If you need to match a fixed number of newlines you can use \n.
But TextPad's regex engine doesn't allow a \n to be quantified with a * or +, or to be contained in a parenthesised expression. So you can't match an arbitrary number of newlines.
ben_josephs wrote:If you need to match a fixed number of newlines you can use \n.
But TextPad's regex engine doesn't allow a \n to be quantified with a * or +, or to be contained in a parenthesised expression. So you can't match an arbitrary number of newlines.
And backreferences do not work across lines as well.