Serg
Serg

Reputation: 25

How to move multiple lines to join another using notepad++

I have file with many lines look as:

1431683268.M60282P30030.mailtest,S=23479,W=23938:0453D37C43E8=
923D
1431683268.M690986P30032.mailtest,S=23459,W=23918:04543801693F=
9F0A
1431683272.M58906P30033.mailtest,S=23469,W=23928:044506F90B17=
A602

How can i merge lines using notepad++ so they look:

1431683268.M60282P30030.mailtest,S=23479,W=23938:0453D37C43E8923D
1431683268.M690986P30032.mailtest,S=23459,W=23918:04543801693F9F0A
1431683272.M58906P30033.mailtest,S=23469,W=23928:044506F90B17A602

Thanks for helping!

Upvotes: 0

Views: 35

Answers (1)

Toto
Toto

Reputation: 91373

You can do:

Type Ctrl+H

Find what: =\R
Replace with: NOTHING

Then click on Replace all

Upvotes: 1

Related Questions