我在 Linux 中使用 python 正则表达式时遇到了一个问题。目标字符串具有多行,例如
This is a matched string_1.
This is a matched string_22.
Do not match this line.
我想要做的是匹配“\n\n”之前的所有内容。我用了
deleteString = re.compile('[\s\S]+\n\n')
但它似乎在 Linux 中不起作用。
如何匹配双 \n 之前的字符串。
感谢你的回复。