5

Take for example the following:

This text file has many


double linebreaks, What is the expression


too find  these?
Gabriel
  • 3,020

3 Answers3

10

If you use "regular expression" search mode:

(\r\n\s*$){2,}

Will find all instances of 2 or more blank lines, including ones that just have spaces on the line.

E.G. using a replace of \r\n

something



something else



another thing

Another








Another thing

Becomes

something

something else

another thing

Another

Another thing
2

Press Ctrl+F, select extended search mode and search for \r\n\r\n.

Indrek
  • 24,874
SparedWhisle
  • 4,393
1

To find double or more linebreaks (and ignore single linebreaks), search in Extended Mode for the following expression:

\r\n\r\n\r\n

It will match this case:

line a


line b

but not this one:

line a

line b

If you want to search and replace, you need to modify the expression a little bit.

amiregelz
  • 8,297