python 匹配一个或多个相同字符
时间: 2024-01-20 08:04:33 浏览: 76
你可以使用正则表达式中的重复字符来匹配一个或多个相同字符。下面是一些示例:
- 匹配任意数量的 a:`a*`
- 匹配至少一个 a:`a+`
- 匹配恰好三个 a:`a{3}`
- 匹配两到四个 a:`a{2,4}`
你可以根据自己的需求来选择适合的重复字符。同时,你需要导入 Python 的 re 模块来使用正则表达式。例如:
```python
import re
text = "aaaabbbbccccdddd"
match = re.search("a+", text)
if match:
print("匹配成功!")
print(match.group())
else:
print("没有匹配!")
```
输出:
```
匹配成功!
aaaa
```
阅读全文