python,使用正则表达式匹配开头和结尾固定取中间字符的代码
时间: 2024-02-07 14:04:17 浏览: 156
python正则表达式匹配不包含某几个字符的字符串方法
可以使用 re 模块中的 re.match() 和 re.group() 来实现。下面是一个例子:
```
import re
# 定义原始字符串,可以避免反斜杠的转义
text = r"This is a sample text, and we want to extract 'sample'."
# 定义正则表达式
pattern = r"sample"
# 使用 re.match() 匹配正则表达式
match = re.match(pattern, text)
if match:
# 使用 re.group() 提取匹配结果
extracted = match.group()
print(extracted)
else:
print("No match found.")
```
输出结果为:`sample`
希望能对你有帮助!
阅读全文