Hi,
I have this regex :
I would like to replace the number 3 by a variable like this :
But it doesn't work with the text-processing regex
I try with quote and many things but nothing do.
I even try it in the C# code window but it doesn't work.
Have you got an idea how i can do that ?
thank you
I have this regex :
C#:
(?<=(\w+\s){3})\w+\s\w+
C#:
(?<=(\w+\s){{-Variable.myvar-}})\w+\s\w+
I try with quote and many things but nothing do.
I even try it in the C# code window but it doesn't work.
Have you got an idea how i can do that ?
thank you