質問編集履歴
1
説明不足だったので詳細を追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,15 +1,49 @@
|
|
1
1
|
pythonで4単語以上の単語が連続して重複している箇所を抽出すると言うことをしたいのですが、正規表現を使って抽出することはできるのでしょうか。調べてみてもあらかじめ比べる文字が決まっている場合のみの例しか出てきません。自分で思いつく方法は文章をすべて単語に分けて総当たりする方法しか思いつきません。何かいい方法を知っている方がいたら教えてください。お願いします。
|
2
2
|
|
3
|
-
|
3
|
+
例えば例文1と2を比べる場合、
|
4
4
|
|
5
5
|
|
6
6
|
|
7
7
|
例文1
|
8
8
|
|
9
|
-
When hay is followed by a plural noun, the article is omitted. If we want to describe the quantity of the plural noun, we use a number after “hay” (as we saw in one of the previous examples).
|
9
|
+
When hay is followed by a plural noun, the article is omitted. If we want to describe the quantity of the plural noun, we use a number after “hay” (as we saw in one of the previous examples). This application includes two hundred keywords with transcription, explanation, synonyms, and samples selected from the SAT vocabulary.
|
10
10
|
|
11
11
|
|
12
12
|
|
13
13
|
例文2
|
14
14
|
|
15
|
+
When hay is followed by a plural noun, the article is omitted. Under Study tools, you will find a pop-up grammar guide complete with examples. I am a party inside my head.
|
16
|
+
|
17
|
+
Today is sunny. I am a party inside my head.
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
この場合例文1と2で共通した、4単語以上が連続している部分を抜き出したいです。When hay is followed by a plural noun, the article is omitted.だけを抜き出したいです。
|
22
|
+
|
23
|
+
回答いただいた方法で試してみましたが、例文2にて重複する部分も抜き出されてしまいます。( I am a party inside my head.)
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
頂いた方法
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
```python
|
32
|
+
|
33
|
+
text="""
|
34
|
+
|
35
|
+
When hay is followed by a plural noun, the article is omitted. If we want to describe the quantity of the plural noun, we use a number after “hay” (as we saw in one of the previous examples).
|
36
|
+
|
15
37
|
When hay is followed by a plural noun, the article is omitted.
|
38
|
+
|
39
|
+
"""
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
import re
|
44
|
+
|
45
|
+
rex = re.compile(r"(\b\w+(?:\W+\w+){3,}\b).*\1",re.DOTALL)
|
46
|
+
|
47
|
+
print(re.findall(rex, text))
|
48
|
+
|
49
|
+
```
|