I have a smiliar question to this. I am also using the string manipulation node.
Right now I have the following strings (in a column):
Order[NN(STTS)]
523:10[CARD(STTS)]
Euro12[NN(STTS)]
I want to have the output:
[NN(STTS)]
[CARD(STTS)]
[NN(STTS)]
How can I use stringManipulation to do so, right now I am using:
regexReplace($List(Term)$, "/(.*?)\[" , "[")
The output I get currently is:
?
?
?
If i am checking it online with the java regex: https://regex101.com/r/z6eOHv/1
The output looks fine:
What is my mistake?