Hello,
I have an attribute that has values like this (the attribute itself is RegEX expression):
^[1-9]{1}[0-9]{1-3}[1-9]{1}[0-9]{5-7}$
In this attribute I want to replace all - that are within {} with a ,
I tried using the String replacer by first selecting all curly brackets with dashes, like this :
\\{\\d-\\d\\}
And then replacing it with this:
\\{\\d,\\d\\}
But of course it does not work cause you cannot replace with regex.
Any ideas?
Thanks !