List to line
-
I have a text file that has list of 400 computers and need to turn that into 1 line.
Computer1
Computer2
Computer3
Computer4to
Computer1, Computer2, Computer3, Computer4
Is there an easy way to do this in Notepad++?
Thanks -
Yes, CTRL+A, CTRL+J if space separated is good enough,
otherwise use find/replace dialog and mark Extended in Search Mode,
usefind what:\r\n
and
replace with:,
Cheers
Claudia -
Thank you very much!!!