python正则匹配B2
时间: 2024-01-24 11:16:08 浏览: 108
python正则匹配
在Python中,可以使用正则表达式来匹配字符串中的特定模式。要匹配字符串中的"B2",可以使用以下代码示例:
```python
import re
string = "B2 is a match"
pattern = r"B2"
result = re.search(pattern, string)
if result:
print("Match found!")
else:
print("No match found.")
```
这段代码使用了`re.search()`函数来搜索字符串中是否存在与给定模式匹配的内容。如果找到匹配项,则会打印"Match found!",否则会打印"No match found."。
阅读全文