Solved
I have a column that contains a lot of special characters. By using transformer 'StringReplacer', I can replace i.e. an '#' by an ' '; How can I replace a list of special characters of 10 or more characters. Do I need to use 10 StringReplacers?
I have a column that contains a lot of special characters. By using transformer 'StringReplacer', I can replace i.e. an '#' by an ' ';
How can I replace a list of special characters of 10 or more characters. Do I need to use 10 StringReplacers?
Best answer by virtualcitymatt
Another optoin is to use a reular expression - this one should work:
!|"|§|\$|%|/|\(|\)|\=|\?|\\|\*|\+|'|#
The "|" charachter in a reqular expression is like a logical OR. You need to use "\" to escape some of the charachters.
Reply
Rich Text Editor, editor1
Editor toolbars
Press ALT 0 for help
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.