Crossin的编程教室
标题:
Python 56 课:正则表达式【2】的另一种解答
[打印本页]
作者:
今天手气不错啊
时间:
2014-3-14 17:18
标题:
Python 56 课:正则表达式【2】的另一种解答
本帖最后由 今天手气不错啊 于 2014-3-14 17:20 编辑
import re
text="site sea sue sweet see case sse ssee loses"
m=re.findall(r"s.?\S?e",text)
if m:
print m
else:
print "not match"
复制代码
以上代码在PythonWin里运行通过
输出结果:(PythonWin)
2014-3-14 17:17 上传
下载附件
(15.07 KB)
欢迎光临 Crossin的编程教室 (https://bbs.crossincode.com/)
Powered by Discuz! X2.5