Does anybody know how I can remove these special characters/signs before the extracted terms (see pictures)? .
If they are removed, these words can then be counted to the term frequencies of the same words w/o these signs.
Thank you!!
your idea in the other thread was almost correct.
You can use the String Manipulation node and then use the expression regexReplace($Term as String$,“☐|>|<|-|€”, “”). This will replace the characters with an empty String. It seems that you forgot to put the pipe character (logical OR) in between each character.