Charles Dye
Super Moderator
- May
- 5,226
- 149
Staff member
I spent way too much time trying to do this with regular expressions....
Insert text at start of line:
Insert text at end of line:
Both at once:
Insert text at start of line:
Code:
tpipe /input=filename.txt /insert=0,1,"rem "
Insert text at end of line:
Code:
tpipe /input=filename.txt /insert=0,0," //"
Both at once:
Code:
tpipe /input=filename.txt /insert=0,1,"[[ " /insert=0,0," ]]"