我需要三个单词的正则表达式,用空格分隔。我试过这个:
>>>match = re.search('\w\s\w\s\w', 'cat dog mouse')
>>>match.group()
....
AttributeError: 'NoneType' object has no attribute 'group'
不应该\w\s\w\s\w
接受“word word word”吗?
我需要三个单词的正则表达式,用空格分隔。我试过这个:
>>>match = re.search('\w\s\w\s\w', 'cat dog mouse')
>>>match.group()
....
AttributeError: 'NoneType' object has no attribute 'group'
不应该\w\s\w\s\w
接受“word word word”吗?