notepad++ - Notepad ++ Moving one line to the start of the next line -


i have thousands of lines in notepad++ person's title , initials in 1 line , surname in next. trying 1 line. there other info on lines inbetween can't merge every 2nd line. looks like:

mrs m b
xxxxx

i need mrs m b xxxxx.

is there way can search "mrs" , move line start of next line?

you do:

find what: (mrs.*?)\r
replace with: $1

\r stands line break.


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -