我有一個txt文件這樣的結尾:如何打印從文件中的某些行開始和一個有條件的字符串
[abc]
There is
a lot of
contents here
[abc]
[def]
Here are
many other
contents
[def]
[ghi]
and bunch of
contents here too
[ghi]
我想打印出來的標籤字符串之間的內容,例如:打印[abc]和[abc]之間的所有內容,而不打印任何[abc]行。我怎麼能做到這一點?
如果所有的標記線開始'['並沒有其他內容行開始'['然後篩選以'['開頭的所有行。正則表達式應該是這樣的'^ [。* $'多行模式 –
你有沒有達到你想要的? – Mead3000