Commit b8b80a5
authored
Update p07_specify_regexp_for_shortest_match.rst
row 19: str_pat = re.compile(r'\"(.*)\"') should be str_pat = re.compile(r'"(.*)"')
row 36: str_pat = re.compile(r'\"(.*?)\"') should be str_pat = re.compile(r'"(.*?)"')
"\" just don't works.1 parent bec08b4 commit b8b80a5
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
| 19 | + | |
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
36 | | - | |
| 36 | + | |
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
| |||
0 commit comments