Remove space and Space* from the name ensuring John Doe*/ John Doe * converts to John Doe. What transformer and parameters should be implemented?
Tried to use the Attribute Trimmer but it only removes either of it.
Remove space and Space* from the name ensuring John Doe*/ John Doe * converts to John Doe. What transformer and parameters should be implemented?
Tried to use the Attribute Trimmer but it only removes either of it.
If you use a StringReplacer with the Replace Regular Expression mode, you can use this in the Text To Replace parameter. Leave the Replacement Text parameter blank.
\s?\*
Thank you. It works