python中re match
时间: 2024-06-13 10:08:55 浏览: 164
python_re模块.docx
在Python中,re.match()函数用于尝试从字符串的起始位置匹配一个模式,如果不是起始位置匹配成功的话,match()函数就返回None。下面是一个例子:
```python
import re
str_content = "Python is a good language"
str_pattern = "Python"
re_content = re.match(str_pattern, str_content)
if re_content:
print("Match found: ", re_content.group())
else:
print("Match not found")
```
输出结果为:
```
Match found: Python
```
在上面的例子中,我们首先导入了re模块,然后定义了要匹配的字符串和模式。接着,我们使用re.match()函数来尝试从字符串的起始位置匹配模式。如果匹配成功,我们就使用group()函数来获取匹配的结果。如果匹配失败,我们就输出“Match not found”。
阅读全文