时间:2021-05-22
正则表达式很神奇啊
# -*- coding:utf-8 -*-import redef print_match_res(res): """打印匹配对象内容""" if res is not None: print(res.group()) else: print(None)# 两种匹配方式:pattern="[A-Z][a-z]+"# 一、使用re模块函数进行匹配res=re.match(pattern,"Tom is a good boy") # 匹配,返回匹配对象print(type(res))print(res.group())# 二、使用预编译后的正则表达式对象的方法进行匹配obj_pattern=re.compile(pattern) # 预编译,返回正则表达式对象print(type(obj_pattern))res=obj_pattern.match("Tom is a good boy") # 匹配,返回匹配对象print(type(res))print(res.group())# 匹配对象的group()和groups()方法pattern="\d{3}-\d{5}"obj_pattern=re.compile(pattern)res=obj_pattern.search("家庭电话:000-88886")print(res.group()) # 返回整个匹配或特定子组print(res.groups()) # 返回包含全部子组的元组# match():从起始部分开始匹配,如果成功,返回匹配对象;失败,返回None。只匹配一次pattern="my"# res=re.compile(pattern).match("my name is li")res=re.match(pattern,"my name is li")print_match_res(res)# search(): 从任意位置开始匹配,如果成功,返回匹配对象;失败,返回None。只匹配一次pattern="my"# res=re.compile(pattern).search("it's my dog")res=re.search(pattern,"my name is li")print_match_res(res)# 查找全部# findall(),finditer()res=re.findall(r"th\w+","This and that",re.I)print(res)res=re.finditer(r"th\w+","This and that",re.I)print(res)print(next(res).group(),next(res).group())# 替换# sub(),subn()res=re.sub("funny","fool","You are so funny")print(res)res=re.subn("funny","fool","You are so funny")print(res)# 分割# splite()res=re.split("\.","Mr.Smith")print(res)print("#"*50)# 择一匹配符号 a|bpattern="I|You|She"res=re.compile(pattern,flags=re.IGNORECASE).match("i love you")print_match_res(res)res=re.compile(pattern,flags=re.I).search("who love you")print_match_res(res)# 匹配任意单个字符 .pattern="w{3,}\..+\.com"res=re.match(pattern,"")print_match_res(res)res=re.match(pattern,"li@qq.vip.org")print_match_res(res)print(res.group(0),res.group(1),res.group(2),sep="\t")print(res.groups())# 匹配字符串的起始和结尾,单词边界 ^a z$ \A \Z \b \Bpattern=r"^the"# pattern=r"\Athe"res=re.search(pattern,"The end of the world")print_match_res(res)res=re.search(pattern,"they smile")print_match_res(res)pattern=r"cry$"# pattern=r"cry\Z"res=re.search(pattern,"they cry")print_match_res(res)res=re.search(r"\bthe","bit the dog")print_match_res(res)res=re.search(r"\Bhe","bit the dog")print_match_res(res)总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Java中正则表达式运用实例(参看java中正则表达式运用详解):测试代码packagetest;/***在String的matches()方法,split()
本文实例讲述了Python松散正则表达式用法。分享给大家供大家参考,具体如下:Python允许用户利用所谓的松散正则表达式来完成这个任务。一个松散正则表达式和一
下面列出Python正则表达式的几种匹配用法:1.测试正则表达式是否匹配字符串的全部或部分regex=ur""#正则表达式ifre.search(regex,s
本文实例讲述了正则表达式教程之子表达式用法。分享给大家供大家参考,具体如下:注:在所有例子中正则表达式匹配结果包含在源文本中的【和】之间,有的例子会使用java
本文实例讲述了Python爬虫之正则表达式基本用法。分享给大家供大家参考,具体如下:一、简介正则表达式,又称正规表示式、正规表示法、正规表达式、规则表达式、常规