How to add a word into a phrase ? Any bots ?

DOdoubleG

Regular Member
Joined
Nov 23, 2015
Messages
261
Reaction score
59
For example i have a list of keywords and i want to add an additional word into each keyword
Example: 123
132
I need a tool to add lets say "a" to those words so it will look like 123 a, 132 a
Do any of you guys know about something like this tool?
 
Do any of you guys know about something like this tool?
You easily can achieve this with notepad++.

Instructions:

Press CTRL + H to open the replace tool in notepad++
Select the Regular expression option from the buttom

In order to add a word at the end of each line:
Type $ in the Find what textbox
Type what you want to insert in the Replace with textbox
Press Replace All

If you want to add a word at the beginning of each line:
Type ^ in the Find what textbox
Type what you want to insert in the Replace with textbox
Press Replace All
 
Back
Top