文章目录
- 修饰符 / 模式
- 特别字符
- 特殊表达式
- re模块函数
- compile()
- search()
- match()
- findall()
- split()
- sub() 和 subn()
- sub 高级用法
- finditer()
- 贪婪匹配
- macth 一些出现场景
- group()
- groups()
- groupdict()
修饰符 / 模式
修饰符 | 描述 |
---|
re.I | 匹配对大小写不敏感 |
re.L | 做本地化识别匹配 |
re.M | 多行匹配,影响^ 和& |
re.S | 使. 包括换行在内的所有字符 |
re.U | 根据Unicode 字符集解析字符。 影响 \w , \W , \b , \B |
re.X | 该标志通过给予你更灵活的格式以便你将正则表达式写得更易于理解。 |
特别字符
字符 | 说明 |
---|
$ | 匹配结尾 |
^ | 匹配开头 |
+ | 此前表达式一次 或多次 |
? | 此前表达式零次 或一次 |
* | 此前表达式零次 或多次 |
. | 匹配任意字符,除换行 |
| | 两项之间取或 。
a|b :表示匹配 a 或 b |
\ | 转义字符。 要匹配$ 表达式应为 \$ |
() | 子表达式、组 |
{} | 限定符 |
| |
\b | 匹配一个边界 |
\B | 匹配一个非边界 |
\w | 匹配字母和数字 |
\W | 匹配非字母和数字 |
\d | 匹配数字 |
\D | 匹配非数字 |
\s | 匹配空白。[\t\n\r\f\v] |
\S | 匹配非空。 |
| |
\A | 匹配字符串的开始 |
\Z | 匹配字符串的结束, 如有换行,只匹配到换行前的结束字符【常用】 |
\z | 匹配字符串结束 |
\G | 匹配最后匹配完成的位置 |
特殊表达式
表达式 | 说明 | 示例 |
---|
(?#…) | 注释 | |
[…] | 字符组。 | [a-zA-z] :匹配字母
[hdjr] :匹配h ,d , j 或 r
[\u4e00-\u9fa5] :匹配中文 |
[^…] | 不在字符组的字符。 | [^abc] :匹配除了a , b , c 外的 |
{n[, m]} | 匹配n次(或n~m次) | 6{6,8} :匹配'6' 6~8次 |
a | b | 或 | a|b :匹配 a 或 b |
(re) | 匹配括号内的表达式,也表示一个组 | (http):// :匹配http |
(?P…) | 命名组 | |
(?P=name) | 调用已匹配的命名组 | |
/number | 通过序号调用已匹配的组 | |
(?:re) | 类似(re) ,但不表示组 | |
(?imx:re) | 在括号中使用 i ,m ,x 可选标志 | |
(?-imx:re) | 在括号中不使用 i , m ,x 可选标志 | |
手机端显示这个表格肯定辣眼睛,截个图放这。
re模块函数
compile()
将正则语句编译成Pattern
对选
返回值: Pattern 对象
语法:
pt = re.compile(soucre,filename,mode[, flags[, dont_inherit]])
参数:
pt = re.compile(r'[aeiou]+$')
pt.findall('hello world')
search()
返回值: 第一个成功的匹配(match对象) 或 None
语法:
re.search(pattern, string,flags=0
)
参数:
>>> re.search(r'hello', 'hello world')
<re.Match object; span&#61;(0, 5), match&#61;&#39;hello&#39;>
match对象&#xff1a;
.group()
返回匹配值.groups()
.groupdict()
.span()
返回匹配位置.start()
.end()
match()
从第一个字符开始匹配
返回值&#xff1a; match对象 或 None
re.match(pattern, string,flags&#61;0
)
参数&#xff1a;
match对象&#xff1a;
.group()
返回匹配值.groups()
.groupdict()
.span()
返回匹配位置.start()
.end()
findall()
返回值&#xff1a; 所有匹配结果列表 或 元组&#xff08;有组的话&#xff09;
语法&#xff1a;
re.findall(pattern,string,flags&#61;0)
参数&#xff1a;
>>> re.findall(&#39;hello\d?&#39;, &#39;e hello2 world hello1&#39;)
[&#39;hello2&#39;, &#39;hello1&#39;]
split()
将字符串按正则规则切分
返回值&#xff1a; 返回分隔后的列表
语法&#xff1a;
re.split(pattern,string,maxsplit&#61;0,falgs&#61;0)
参数&#xff1a;
print(re.split(r&#39;\d{2,4}&#39;, &#39;hello2future666HHHHHH897LLL12beloved&#39;))
&#39;&#39;&#39;
[&#39;hello2future&#39;, &#39;HHHHHH&#39;, &#39;LLL&#39;, &#39;beloved&#39;]
&#39;&#39;&#39;
sub() 和 subn()
搜索和替换
返回值&#xff1a; 替换后的字符串 | subn: (替换后字符串&#xff0c;替换次数)
语法&#xff1a;
re.sub(pattern,repl,string[, count])
参数&#xff1a;
print(re.sub(&#39;666&#39;, &#39;999&#39;, &#39;祝你666&#xff0c; 祝他666&#39;))
print(re.subn(&#39;666&#39;, &#39;999&#39;, &#39;祝你666&#xff0c; 祝他666&#39;))
&#39;&#39;&#39;
祝你999&#xff0c; 祝他999
(&#39;祝你999&#xff0c; 祝他999&#39;, 2)
&#39;&#39;&#39;
sub 高级用法
def ch(value):return str(len(value.group()))print(re.sub(&#39;[hH]&#43;&#39;, ch, &#39;hhhhhhhh, IamGreat, HHHHH, ni666, hhhhhhh&#39;))
&#39;&#39;&#39;
8, IamGreat, 5, ni666, 7
&#39;&#39;&#39;
finditer()
跟findall
类似
返回值&#xff1a; iterator
类。每个元素是一个 match
对象
语法&#xff1a;
re.finditer(pattern,string,flags&#61;0)
贪婪匹配
正则匹配默认为贪婪模式&#xff1a;
st &#61; &#39;Python ython thon hon on&#39;
pt &#61; re.compile(r&#39;P.&#43;n&#39;)
print(pt.findall(st))
&#39;&#39;&#39;
[&#39;Python ython thon hon on&#39;]
&#39;&#39;&#39;
st &#61; &#39;Python ython thon hon on&#39;
pt &#61; re.compile(r&#39;P.&#43;?n&#39;)
print(pt.findall(st))
&#39;&#39;&#39;
[&#39;Python&#39;]
&#39;&#39;&#39;
macth 一些出现场景
方法、属性&#xff1a;
group()
- 只有一个组&#xff0c;取值时&#xff1a;
match.group(0)
- span: 匹配到的位置信息
string &#61; &#39;hello world, hello python&#39;
pt &#61; re.compile(r&#39;hello&#39;)
result &#61; pt.search(string)
print(result, result.span(), result.start(),result.end(), result.group(),sep&#61;&#39;\n&#39;)
&#39;&#39;&#39;
(0, 5)
0
5
hello
&#39;&#39;&#39;
groups()
- 有多个组
- 想要看按组匹配的结构还得
match.groups()
string &#61; &#39;hello world, hello python&#39;
result &#61; re.search(r&#39;(ello).&#43;(thon)&#39;,string
)
print(result,result.span(), result.start(), result.end(), result.groups(), sep&#61;&#39;\n&#39;)
&#39;&#39;&#39;
(1, 25)
1
25
(&#39;ello&#39;, &#39;thon&#39;)
&#39;&#39;&#39;
groupdict()
- 当给组命名时&#xff0c;可以用
groupdict()
返回字典 - 或者也可以用
groups()
返回元组
string &#61; &#39;hello world, hello python&#39;
result &#61; re.search(r&#39;(?Pello).&#43;(?Pthon)&#39;,string
)
print(result,result.span(), result.start(), result.end(), result.groups(), result.groupdict(),sep&#61;&#39;\n&#39;)
&#39;&#39;&#39;
(1, 25)
1
25
(&#39;ello&#39;, &#39;thon&#39;)
{&#39;halou&#39;: &#39;ello&#39;, &#39;Py&#39;: &#39;thon&#39;}
&#39;&#39;&#39;