I am new to regular expressions and I am trying to do the following:
LET CustomerName='test'; or LET CustomerName = 'test'; or let CustomerName = 'test'; I have this line and I would like to change the test word into something else. So I found this expression:
(?<=LET CustomerName='')[^'']*
And that works for my first example, but I would like to make it more robust so it can also recognize the second line.
I found this code to replace something between quotes but I would like to only change the value between quotes in the specific line.
(?<=(["']))(?:(?=(\\?))\2.)*?(?=\1) Thanks for your help.