Append character at end of line
-
I have a list of items and need to add a character at the end of each line. But the current last character on each line varies. So how can I add a character (and it’ll be the same character for each line) to the end? Note that I can’t get into some sort of scripting here. I need something I can paste from Notepad++ into something else.
-
I assume you want this.
Having regular expression checked and wrap around NOT checkedfind what:$
replace with:your_characterCheers
Claudia -
That did the trick. Exactly what I needed. Thanks much.