Hello group! I've been trying to replace a string with StringReplacer, if the text line contains certain text. So basically it's a classic ifthen conditional in regex, though I'm new to conditional tests in regex.
My text string is:
#1=IFCCARTESIANPOINT((1,1));
If the text string contains IFCCARTESIANPOINT then search for ));.
I tried syntax (?(A)X), If A then X, thus my regex:
(?(IFCCARTESIANPOINT)[)][)];) but it doesn't work at all.
I'd very much appreciate help :)