字符串匹配的正则表达式模式
时间: 2024-04-10 14:26:15 浏览: 55
以下是一个演示字符串匹配的正则表达式模式的例子:
引用:使用re.match()函数匹配字符串[^1]
```python
import re
pattern = r"hello"
string = "hello world"
match = re.match(pattern, string)
if match:
print("Match found")
else:
print("Match not found")
```
这个例子中,我们使用了re.match()函数来匹配字符串。re.match()函数会尝试从字符串的开头开始匹配指定的正则表达式模式。如果匹配成功,则返回一个匹配对象;如果匹配失败,则返回None。在这个例子中,我们使用了模式"hello"来匹配字符串"hello world"。由于字符串的开头正好是"hello",所以匹配成功,输出"Match found"。
阅读全文