Replace new lines with a comma delimiter with Notepad++?
I have a Notepad++ question.
How can I take the below words in Notepad++ (which is on different lines)
Apples
Apricots
Pear
Avocados
Bananas
And turn them into a paragraph with a comma at the end of each one? Like this:
Apples, Apricots, Pear, Avocados, Bananas
Open the find and replace dialog (press CTRL+H).
Then select Regular expression
in the 'Search Mode' section at the bottom.
In the Find what
field enter this: [\r\n]+
In the Replace with
: ,
There is a space after the comma.
This will also replace lines like
Apples
Apricots
Pear
Avocados
Bananas
Where there are empty lines.
If your lines have trailing blank spaces you should remove those first. The simplest way to achieve this is
EDIT -> Blank Operations -> Trim Trailing Space
OR
TextFX -> TextFX Edit -> Trim trailing spaces
Be sure to set the Search Mode to "Regular expression".
fapDaddy's answer using a macro pointed me in the right direction.
Here's precisely what worked for me.
Place the cursor after the first data item.
Click 'Macro > Start Recording' in the menu.
Type this sequence: Comma, Space, Delete, End.
Click 'Macro > Stop recording' in the menu.
Click 'Macro > Run a Macro Multiple Times...' in the menu.
Click 'Run until the end of file' and click 'Run'.
Remove any trailing characters.
Done!
Here's what worked for me with a similar list of strings in Notepad++ without any macros or anything else:
Click Edit -> Blank Operations -> EOL to space [All the items should now be in a single line separated by a 'space']
Select any 'space' and do a Replace All (by ',')
For Notepad++ 5.9
- Press Ctrl+H
- Select Search mode Extended(\n, \r, \t, \o, \x...)
- Enter Find what: \r\n
- Enter Replace with: ,
- Replace_All should get the required result.