python正则匹配任意字符
时间: 2023-07-08 08:56:05 浏览: 161
python正则匹配
在 Python 中,可以使用正则表达式的元字符`.`来匹配任意字符(除了换行符`\n`)。下面是一个例子:
```python
import re
text = "Hello, world!"
pattern = r"."
result = re.findall(pattern, text)
print(result) # 输出 ['H', 'e', 'l', 'l', 'o', ',', ' ', 'w', 'o', 'r', 'l', 'd', '!']
```
上面的代码中,`pattern`是一个正则表达式模式,其中的`.`表示匹配任意一个字符。使用`re.findall()`函数可以在`text`中匹配出所有符合模式的字符,将其以列表形式返回。
阅读全文