python正则匹配元音字符
时间: 2023-09-26 07:11:08 浏览: 104
python-正则表达式1
可以使用正则表达式中的字符集合来匹配元音字符。元音字符包括 a、e、i、o、u,可以使用如下的正则表达式进行匹配:
```python
import re
text = "The quick brown fox jumps over the lazy dog"
vowels = re.findall('[aeiou]', text, re.IGNORECASE)
print(vowels)
```
输出结果为:`['e', 'u', 'i', 'o', 'o', 'u', 'e', 'a', 'o']`
这里使用了 `re.findall()` 函数来查找所有匹配的元音字符。正则表达式 `[aeiou]` 表示匹配任意一个元音字符。`re.IGNORECASE` 参数表示忽略大小写。
阅读全文