-
-
Save dmkoluk/b30730926daade858768f9296c40c413 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) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment