头歌用正则表达式的字符组表示方法,编写一个能从文本中快速匹配到python和Python的小程序
时间: 2024-06-14 07:05:16 浏览: 66
Python正则表达式re模块简明笔记(实用应用文)
以下是一个使用正则表达式的字符组表示方法来匹配文本中的python和Python的示例程序:
```python
import re
text = "I love python and Python programming."
# 使用正则表达式匹配文本中的python和Python
pattern = r"[pP]ython"
matches = re.findall(pattern, text)
# 输出匹配到的所有内容
for match in matches:
print(match) # 输出:python Python
```
阅读全文