看板
[ Python ]
討論串[問題] 請問regular expression 可以找出重疊ꨠ…
共 3 篇文章
首頁
上一頁
1
下一頁
尾頁
內容預覽:
官方文件寫:. findall(pattern, string). Return a list of all non-overlapping matches in the string.. 所以要找重疊的patter,只能自己寫了,例:. import re. s='Lawrence and Pet
(還有41個字)
內容預覽:
s = 'Lawrence and Peter are my best friend'. m = []. while s:. x = re.search('\w{2}', s). if x:. s = s[x.start()+1:]. m.append(x.group()). else:. brea
(還有468個字)
首頁
上一頁
1
下一頁
尾頁