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.
We're actively looking for ideas on how to improve Weekly Challenges and would love to hear what you think!
Submit FeedbackOK, the data is actually delimited with commas but what is needed is the deletion of single and double quotes that may or may not be present at the start and end of each datum. A blanket Replace to get rid of quotes would be heavy handed, e.g I don't like green eggs would be rendered as I dont like green eggs.
Solution contained in spoiler.
Regex_Replace(
Regex_Replace(
Regex_Replace(
Regex_Replace([_CurrentField_], "[']$", ""),
'["]$', ""),
'^["]', ""),
"^[']", "")
and another!