权威链接:
https://docs.python.org/2/library/re.html
match函数默认从字符串开头匹配
需要groups()的话我们的模式得加括号
使用元字符串
多次正则匹配可以提前生成Pattern对象
匹配0-99
【1-9】?【0-9】
https://docs.python.org/2/library/re.html
match函数默认从字符串开头匹配
需要groups()的话我们的模式得加括号
使用元字符串
多次正则匹配可以提前生成Pattern对象
匹配0-99
【1-9】?【0-9】