I have a large file with a lot of <h1></h1>
tags with various text between it. I'm searching for a way to remove all text between those tags, which might also include newline chars.
Any help would be appreciated.
Update: Tried this, but doesn't work... (ofcourse cursor was at begin of file)
Select
. matches new line
andregular expression
optionFind what:
<h1>.*?</h1>
Replace with:
<h1></h1>
find:
replace with: