1

I have 1 column of characters, they are stock ticker symbols, and each is on its own line. I need to convert this to 1 row with each ticker separated by a comma.

From something like:

mmm

axp

.

.

.

To something like:

mmm,axp,...

Is there a way to do this easily inside of Notepad++ ?

Thanks!!

redfish993
  • 21
  • 1
  • 1
    Find: `\R` ; Replace: `,` – Toto Dec 27 '21 at 19:50
  • Does this answer your question? [Notepad++ rows to columns, in groups](https://stackoverflow.com/questions/45969411/notepad-rows-to-columns-in-groups) – Toto Dec 27 '21 at 19:52
  • Does this answer your question? [Reference - What does this regex mean?](https://stackoverflow.com/questions/22937618/reference-what-does-this-regex-mean) – AdrianHHH Dec 27 '21 at 19:53

1 Answers1

1

If you use Windows Carriage Return

enter image description here

You can run simply this search & replace

enter image description here

to have

enter image description here

aborruso
  • 4,938
  • 3
  • 23
  • 40