Replace CRLF in Notepad++ using regex
Solution 1:
Just use *
to look for zero or more occurrences of the previous object
(\r\n)*\[orange\]
For 1 or more instances use +
instead of *
(\r\n)+\[orange\]
[
and ]
are special characters denoting character class so they must be escaped when looking for the literal square brackets