Maison > Questions et réponses > le corps du texte
import re text = 'thenextnothingis123456' print(re.search(r'(\d*)', text).group(0))
为什么这段代码不能匹配出数字?如果将d替换成w反倒可以匹配出所有字符?
三叔2016-11-07 11:30:41
为什么这段代码不能匹配出数字?
我感觉其实已经匹配出来了,就是0次的数字: 你的.group(0)没有报nonetype错误说明匹配成功了啊