Last active
April 26, 2022 00:45
-
-
Save simonjamain/7e23b898527655609e5ff012f412dd50 to your computer and use it in GitHub Desktop.
fix the bug on Utilities.parseCsv() google script function which does not allow newlines in csv strings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function parseCsv(csvString, delimiter) { | |
var sanitizedString = csvString.replace(/(["'])(?:(?=(\\?))\2[\s\S])*?\1/g, function(e){return e.replace(/\r?\n|\r/g, ' ') }); | |
return Utilities.parseCsv(sanitizedString, delimiter) | |
} |
Thank you!
Super helpful. Thank you!
Thanks Simon - I had been using a similar solution from: https://stackoverflow.com/a/60286433 ... but it was failing in some circumstances.
Thank you!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
you are my hero of the day, thanks!!