This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
The highly anticipated Alteryx Community tradition is back! We hope you'll join us!
Learn MoreHi,
I want to remove the double quotations from the second record in this data set. Neither StripQuotes nor Trim is working. What am I missing here? What's the solution?
Thanks,
Dan Stone
Solved! Go to Solution.
Try using,
trim([Comment],'“')
You weren't doing anything wrong per se. This ascii character isn't considered a quotation mark. So all I did was copy and paste this “ is into your formula.
Hope this helps.
Edit: It's actually a Left Double Quotation Mark which apparently isn't recognised by StripQuotes.
@Present_guy You can use the replace function in the formula tool to replace the quotes.
ReplaceFirst([Field2], '”', '')
ReplaceFirst([Field2], '“', '')
REGEX_REPLACE([Comment], '^[[:unicode:]]?(.+?)[[:unicode:]]?$', '$1')
Will also work. This will trim out any non-ascii character (or any char code over 255) that's found either at the beginning or end of the string... may be overkill, but just another option to explore.
Jimmy
Teknion Data Solutions
You can also use a regular expression to strip the quotes out if you see this being a regularly occurring theme in your data. Hope this helps!