回答編集履歴
2
re.MULTILINE は不要なので削除
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
|
18
18
|
|
19
|
-
test_re = re.compile(r'base64.*', flags=
|
19
|
+
test_re = re.compile(r'base64.*', flags=re.DOTALL)
|
20
20
|
|
21
21
|
|
22
22
|
|
1
説明追加
test
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
公式ドキュメントより
|
2
|
+
|
3
|
+
https://docs.python.org/ja/3.6/howto/regex.html#compilation-flags
|
4
|
+
|
5
|
+
|
6
|
+
|
1
7
|
```python
|
2
8
|
|
3
9
|
import re
|