标签:cal compile pattern lib com att 正则表达式 模块 表达
"ython正则表达式
.除换行符外的所有字符
\d匹配所有数字
\D匹配所有非数字
\s匹配所有空白字符
\S匹配非空白字符
\w匹配A-Z,a-z,0-9,_
\W匹配非A-Z,a-z,0-9,_
\d{m}匹配m个数字
?匹配前一个字符0次或1次,例:abc?匹配ab和abc
*匹配前一个字符0次或无限次,例:abc*匹配ab或abccc
+匹配前一个字符1次或无限次
{m,n}匹配前一个字符m至n次
[]匹配中括号内的字符集
re模块
import re
pattern=re.compile(
1
标签:cal compile pattern lib com att 正则表达式 模块 表达
原文地址:https://www.cnblogs.com/Rakint/p/9302007.html