Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
sureshbn21
Contributor
Contributor

Correct the character format

Hi,I am having Customer name listbox.Here customer name field values are getting *,? symbols. how to transformation and symbols (replace) or removing. can you please help me on this.PFB.

Thanks,

BNSuresh.

Labels (1)
3 Replies
MayilVahanan

HI @sureshbn21 

Try with PurgeChar() or KeepChar() functon

In script, Like 

PurgeChar(Customer , '*?') as Customer 

or

KeepChar(Customer , 'abcdefghijklmnopqrstuvwxyz ') as Customer

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
sureshbn21
Contributor
Contributor
Author

Hi all,
I have already write the above expersion in list box properties but Before
the loading regarding this how to write the script.
Thanks,
Bnsuresh
MayilVahanan

Hi 

Try like this,

Load PurgeChar(Customer , '*?') as Customer , yourfields from yoursource;

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.