import
s1 = 'a1b2c3d4e56'
n = re.findall('(\w)*', s1)
print(n)
请教大家,上面这段正则的结果为什么是:['6', '']
import
s1 = 'a1b2c3d4e56'
n = re.findall('(\w)*', s1)
print(n)
请教大家,上面这段正则的结果为什么是:['6', '']
参照如下,括号直接把\w
给封闭了
import re
s1 = 'a1b2c3d4e56'
n = re.findall('(\w)*', s1)
print("n---->",n)
# ||
# ||
# ||
# \||/
# \/
m = re.findall('\w', s1)
for i in m:
x = re.findall('\w*',i)
print("x---->",x)
print("m---->",m)
结果:
n----> ['6', '']
x----> ['6', '']
m----> ['a', '1', 'b', '2', 'c', '3', 'd', '4', 'e', '5', '6']
4 回答4.5k 阅读✓ 已解决
1 回答3.4k 阅读✓ 已解决
4 回答3.9k 阅读✓ 已解决
3 回答2.2k 阅读✓ 已解决
1 回答4.5k 阅读✓ 已解决
2 回答469 阅读✓ 已解决
1 回答4k 阅读✓ 已解决
正则表达式组的概念
‘(‘’)’ 无命名组
官方文档解释
re.findall(pattern, string, flags=0)
Return all non-overlapping matches of pattern in string, as a list of strings. The string is scanned left-to-right, and matches are returned in the order found. If one or more groups are present in the pattern, return a list of groups; this will be a list of tuples if the pattern has more than one group. Empty matches are included in the result unless they touch the beginning of another match.
返回字符串中匹配规则的所有非重叠匹配,作为字符串列表。