看板 [ Python ]
討論串[問題] 請問regular expression 可以找出重疊ꨠ…
共 3 篇文章
首頁
上一頁
1
下一頁
尾頁

推噓1(1推 0噓 0→)留言1則,0人參與, 最新作者rclrn (Aethanyc)時間18年前 (2006/06/01 20:47), 編輯資訊
2
0
0
內容預覽:
官方文件寫:. findall(pattern, string). Return a list of all non-overlapping matches in the string.. 所以要找重疊的patter,只能自己寫了,例:. import re. s='Lawrence and Pet
(還有41個字)

推噓2(2推 0噓 1→)留言3則,0人參與, 最新作者alltoher (any1's any is alltoher)時間18年前 (2006/06/01 22:23), 編輯資訊
0
0
0
內容預覽:
真是太感謝你了^^. 還想再請問一個問題.. ^^^^^^^^^^^^^^^^^^. 這行我不懂為什麼要這樣寫..對不起啊>"<我知道我的問題很笨. 但是我盡力了... --. 發信站: 批踢踢實業坊(ptt.cc). ◆ From: 220.135.25.192.

推噓1(1推 0噓 2→)留言3則,0人參與, 最新作者ibmibmibm (殺.人.鬼)時間18年前 (2006/06/02 04:14), 編輯資訊
0
0
0
內容預覽:
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
下一頁
尾頁