Skip to main content
Question

Remove space and Space* from the name ensuring John Doe*/ John Doe * converts to John Doe. What transformer and parameters should be implemented

  • April 2, 2025
  • 2 replies
  • 35 views

aashnaparikh
Contributor
Forum|alt.badge.img+3

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. 

2 replies

dustin
Influencer
Forum|alt.badge.img+31
  • Influencer
  • April 2, 2025

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?\*

 


aashnaparikh
Contributor
Forum|alt.badge.img+3
  • Author
  • Contributor
  • April 2, 2025

Thank you. It works