How to add text after a specific character in Notepad++

- Open Notepad++ and load the file where you need to make changes.
- Press Ctrl+H to open the replace window.
- In the Find field, enter the character after which you want to add text. For example, if you want to add text after a comma, enter:
,
, added text
Code example
Original text: 123, apple 456, banana 789, orange Replace settings: Find what: "," Replace with: ", added text" Result: 123, added text apple 456, added text banana 789, added text orange
Now you know how to add text after a specific character using find and replace in Notepad++.