[Solved] Replacing text using Regex expression in Notepad ++


If DSGSQ is the part that is variable in your question (see my comment below question),

a possible Regex is

Find:

(<img src ="https://stackoverflow.com/questions/54358159/wsg://i)([^"]*)(">)

Replace :

<img src ="http://localhost/images/$2.jpg">

1

solved Replacing text using Regex expression in Notepad ++