正则表达式查找某英文单词
时间: 2023-12-16 21:28:13 浏览: 82
以下是使用正则表达式查找某英文单词的例子:
假设我们要在一个字符串中查找所有的color和colour,可以使用re模块中的findall()函数和正则表达式来实现:
```python
import re
text = "The color of the sky is blue. The colour of the flower is red."
pattern = r'colou?r' # 匹配color和colour
result = re.findall(pattern, text)
print(result) # 输出:['color', 'colour']
```
在上面的例子中,我们使用了正则表达式中的?来表示前面的字符(u)可选,即匹配color和colour。
阅读全文