I have a text file of a couple of hundred thousand words. E.g.:
word1
word2
etc
I want to know what program I can use to easily:
- Add "FRONT" to the front of the text, and
- Add "BACK" to the end of the text
So I would end up with:
FRONTword1BACK
FRONTword2BACK
FRONTetcBACK
I can easily do this by coding it in PHP, but I want to know if there is a faster way, with the correct tool? Perhaps this can be done in something like notepad++, or scite, or worst case scenario, linux command line.
Note: I would prefer a WINDOWS based visual editor.