#匹配出所有s开头,e结尾的单词。
import re
text="site sea sue sweet see case sse ssee loses"
m=re.findall(r"\bs\S*?e\b",text) # [site,sue,see,sse,ssee]
if m:
print m
else:
print 'not match'
注:\bs\S*?e\b 以s开头,以e结尾,中间可以有任意个非空格字符
#匹配出所有s开头,e结尾的单词。
import re
text="site sea sue sweet see case sse ssee loses"
m=re.findall(r"\bs\S*?e\b",text) # [site,sue,see,sse,ssee]
if m:
print m
else:
print 'not match'
注:\bs\S*?e\b 以s开头,以e结尾,中间可以有任意个非空格字符