正则表达式处理多行字符串
时间: 2023-05-22 16:05:18 浏览: 170
使用正则表达式拆分字符串
5星 · 资源好评率100%
可以使用Python中的re模块,使用re.DOTALL标志来匹配多行字符串。示例代码如下:
import re
text = """
Hello world
This is a multiline string
End of string
"""
pattern = r"world\n(.*?)End"
result = re.search(pattern, text, re.DOTALL)
if result:
print(result.group(1))
else:
print("No match")
阅读全文