In rows with notepad
-
Good evening friends, I have a text with lines how are you
honryamert@gmail.com:email1 | NAME = FREDY | CODE = IDE-3456
XCD-4568 AQS-5674 | DATE = 11-MAY | N_Client : 34528SW3 | PHONE = 038823456
markvittr@hotmail.com:email | NAME = MARK | CODE = IDE-6215
WSX-7384 TRE-5672 | DATE = 25-SET | N_Client : 36128SW3 | PHONE = 098765457Can you put in rows with notepad?
honryamert@gmail.com:email | NAME = FREDY | CODE = IDE-3456 XCD-4568 AQS-5674 | DATE = 11-MAY | N_Client : 34528SW3 | PHONE = 038823456
markvittr@hotmail.com:email | NAME = MARK | CODE = IDE-6215 WSX-7384 TRE-5672 | DATE = 25-SET | N_Client : 36128SW3 | PHONE = 098765457 -
So you have to pick out some sort of pattern to be able to do this. If your lines are always in pairs then it is fairly easy:
Find what box:
(?-s)^(.+)\R(.+)
Replace with box:\1\s\2
Wrap around checkbox: ticked
Search mode: Regular expression
Action: Press Replace All buttonOf course if your data is not as regular as it appears, then we will move on to something else…