python正则表达式搜索
时间: 2024-04-15 14:23:42 浏览: 187
python正则表达式
以下是使用Python正则表达式进行搜索的示例代码[^2]:
```python
import re
# 定义要搜索的字符串
text = "Hello, my name is John. I live in New York."
# 定义要匹配的正则表达式
pattern = r"John"
# 使用re.search函数进行搜索
match = re.search(pattern, text)
# 判断是否找到匹配
if match:
# 打印匹配的结果
print("找到匹配:", match.group())
else:
print("未找到匹配")
```
运行上述代码,将会输出以下结果:
```
找到匹配: John
```
阅读全文