Is it possible to do a regular expression search and replace in Textpad where the search term spans multiple lines.
e.g. document contains:
Hello
ab_c
D_EF
12_3
World
I would like to replace everything between "Hello" and "World" with a space.
I have tried searching for the regular expression:
Hello.*World
but this does not match (I assume due to the text spanning across multiple lines).