Crossin的编程教室

标题: Python 56 课:正则表达式【2】的另一种解答 [打印本页]

作者: 今天手气不错啊    时间: 2014-3-14 17:18
标题: Python 56 课:正则表达式【2】的另一种解答
本帖最后由 今天手气不错啊 于 2014-3-14 17:20 编辑
  1. import re
  2. text="site sea sue sweet see case sse ssee loses"
  3. m=re.findall(r"s.?\S?e",text)
  4. if m:
  5.     print m
  6. else:
  7.     print "not match"
复制代码
以上代码在PythonWin里运行通过
输出结果:(PythonWin)
正则表达式【2】.jpg





欢迎光临 Crossin的编程教室 (https://bbs.crossincode.com/) Powered by Discuz! X2.5