I\'m using Notepad++ and I can\'t figure this out :
I have numerous lines all starting with http. I need to add some text in front of it in every line.
You can automatically do it in Notepad++ (add text at the beginning and/or end of each line) by using one regular expression in Replace (Ctrl+H):
Explanation: Expression $1 in Replace with input denotes all the characters that include the round brackets (.*) in Find what regular expressin.
Tested, it works.
Hope that helps.