Python正则匹配一个单词,中间可能有大小写下划线变化
时间: 2023-12-10 07:39:46 浏览: 223
可以使用正则表达式来匹配一个单词,中间可能有大小写下划线变化,如下所示:
```python
import re
text = "This is a Text with a Word_word"
word = re.findall(r'\b\w+\b', text)
print(word)
```
输出:
```
['This', 'is', 'a', 'Text', 'with', 'a', 'Word_word']
```
其中,`\b` 表示单词的边界,`\w+` 表示匹配一个或多个字母数字字符或下划线。这样,就可以匹配到中间可能有大小写下划线变化的单词了。
阅读全文