Notepad++ add to every line

后端 未结 13 2008
无人共我
无人共我 2020-11-29 14:18

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.

13条回答
  •  感动是毒
    2020-11-29 14:37

    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.

提交回复
热议问题