假设我想获取“start_”的第一个匹配项和“_end”的第一个匹配项之间的文本,无论它是跨同一行或多行。不要包括匹配项。
示例文本1:
This is a start_text with start_and some_end text with_end
输出文本1:
text with start_and some
示例文本2:
This is a
start_text with
start_and some_end
text with_end
输出文本2:
text with
start_and some
我看过很多答案,但它们都是以行为中心,而不是以文件为中心。任何类型的工具或命令都可以,只要它是基于控制台的。