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.

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.



