一篇文章带你了解python正则表达式的正确用法
1)在实际开发过程中经常会有查找符合某些复杂规则的字符串的需要,比如:邮箱、手机号码等,这时候想匹配或者查找符合某些规则的字符串就可以使用正则表达式了。
2)正则表达式就是记录文本规则的代码
re模块在Python中需要通过正则表达式对字符串进行匹配的时候,可以使用一个 re 模块
# 导入re模块import re# 使用match方法进行匹配操作result = re.match(正则表达式,要匹配的字符串)# 如果上一步匹配到数据的话,可以使用group方法来提取数据result.group()# 导入re模块import re# 使用match方法进行匹配操作result = re.match('test','test.cn')# 获取匹配结果info = result.group()print(info)
结果:test
re.match() 根据正则表达式从头开始匹配字符串数据如果第一个匹配不成功就会报错
匹配单个字符1.匹配任意一个字符# 匹配任意一个字符import reret = re.match('.','x')print(ret.group())ret = re.match('t.o','too')print(ret.group())ret = re.match('o.e','one')print(ret.group())
运行结果:xtooone
2.匹配[ ]中列举的字符import reret = re.match('[hH]','hello Python')print(ret.group())ret = re.match('[hH]','Hello Python')print(ret.group())
运行结果:hH
3.d匹配数字,即0-9import reret = re.match('神州d号','神州6号')print(ret.group())
运行结果:神州6号
4.D匹配非数字,即不是数字non_obj = re.match('D', 's')print(non_obj .group())
运行结果:s
5.s匹配空白,即 空格,tab键match_obj = re.match('hellosworld', 'hello world')print(match_obj .group())
运行结果:hello world
6.S匹配非空白match_obj = re.match('helloSworld', 'hello&world')result = match_obj.group()print(result)
运行结果:hello&world
7.w匹配非特殊字符,即a-z、A-Z、0-9、_、汉字match_obj = re.match('w', 'A')result = match_obj.group()print(result)
运行结果:A
8.W匹配特殊字符,即非字母、非数字、非汉字match_obj = re.match('W', '&')result = match_obj.group()print(result)
运行结果:&
总结本篇文章就到这里了,希望能给你带来帮助,也希望您能够多多关注好吧啦网的更多内容!
相关文章: