回答編集履歴
3
修正
test
CHANGED
@@ -16,10 +16,12 @@
|
|
16
16
|
|
17
17
|
|
18
18
|
|
19
|
-
matches = re.findall(r"(.+という。)", text)
|
19
|
+
matches = re.findall(r"(.+?という。)", text)
|
20
20
|
|
21
21
|
print(matches)
|
22
22
|
|
23
23
|
# ['(以下「甲」という。)', '(以下「乙」という。)', '(以下「本物件」という。)', '(以下「本契約」という。)']
|
24
24
|
|
25
|
+
|
26
|
+
|
25
27
|
```
|
2
修正
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
|
18
18
|
|
19
|
-
matches = re.findall(r"(
|
19
|
+
matches = re.findall(r"(.+という。)", text)
|
20
20
|
|
21
21
|
print(matches)
|
22
22
|
|
1
修正
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
こういう意図であっていますか?
|
2
2
|
|
3
3
|
|
4
4
|
|