首页 > 代码库 > Python之re模块
Python之re模块
re是一个使用频率很高的模块。
# python2 # -*- coding: utf-8 -*- import re str = ‘ABC\\-001‘ print str str = r‘ABC\-001‘ print str if re.match(r‘\w{3}\\\-\d{3}‘, str): print ‘good match‘ else: print ‘bad match‘ src = ‘hello\nworld‘ print src if re.match(r‘hello\nworld‘, src): print ‘good match‘ else: print ‘bad match‘ if re.match(r‘hello.world‘, src): print ‘good match‘ else: print ‘bad match‘ if re.match(r‘hello.world‘, src, re.S): print ‘good match‘ else: print ‘bad match‘ src = r‘hello\nworld‘ print src if re.match(r‘hello\\nworld‘, src): print ‘good match‘ else: print ‘bad match‘
这个例子想说明的是,Python中的字符串如果使用‘r‘前缀,字符串中的内容就是本身,没有转义。
re模块的第一个函数:
re.
match
(pattern, string, flags=0)
一个常用的flag是:
Python之re模块
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。