Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
cancel
Showing results for 
Search instead for 
Did you mean: 
stekol61
Creator
Creator

Remove unwanted characters

Hi!

I'm loading an object from a database with names that start and ends with "

What is the best way to remove ". E.g "altea" -> altea

In the extract script or in the application?

rename.PNG

Labels (1)
2 Replies
sunny_talwar
MVP
MVP

May be try this

PurgeChar(Conv_Client, Chr(34)) as Conv_Client

sunny_talwar
MVP
MVP

Or use Replace

Replace(Conv_Client, Chr(34), '') as Conv_Client