notepad++ add to end line

arrays, notepad++

Solution

Simple. Don't use the notepad++ regex mode, rather use the extended mode.

In the find what field, put `\r` and in the replace with field put `:"",` or your desired keys.

Problem

I've got a txt file with list of names. ``` Tim John Steve Melanie ``` I want to the list turned into: ``` Tim:"", John:"", Steve:"", Melanie:"" ``` How can I add/append the `:"",` to the end of these names.

Original source