regex replacing at beginning of line in notepad++

后端 未结 2 689
误落风尘
误落风尘 2021-01-24 08:11

for example I have txt with content

qqqqaa
qqss
ss00

I want to replace only one q at the beginning of line, that is to get

qqq         


        
2条回答
  •  醉话见心
    2021-01-24 08:40

    You can use ^q(.+) and replace with $1 if you also want to replace single q's.

提交回复
热议问题