前端之家收集整理的这篇文章主要介绍了
<>正则表达式,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
'^men' 标识匹配以 men 开头的字符串。
'[^mem]'标识匹配不是其中的字符串。
$ stands for matching entirely
eg:
re.match('\d&','44') ## Wrong
re.match('\d','4') ## Correct
() stands for you are preparing for obtaining sth.
eg:
a = re.match('^\w+ (\w)$','hello world')
a.groups() ## the output : ('world',)
d = re.match('^(\w+) (\w+)$','hello world')
d.groups() ## the output : ('hello','world')
re.split():
e = 'a1b2c3d4e'
re.split(r'\d',e) ## the output : ['a','b','c','d','e']
原文链接:https://www.f2er.com/regex/360334.html