Fixed
Status Update
Comments
pr...@google.com <pr...@google.com>
pr...@google.com <pr...@google.com> #2
Thank you for your message.
It has been reported internally.
Good luck,
pr...@google.com <pr...@google.com> #3
Hello,
It is fixed now,
Cheers,
[Deleted User] <[Deleted User]> #4
Hi all,
I've tried to run it again and... Nope, still isn't working. Getting the same error.
I've tried to run it again and... Nope, still isn't working. Getting the same error.
to...@gmail.com <to...@gmail.com> #5
I have also just tested it, behavior is unchanged. Perhaps it takes a while for the changes to propagate?
pr...@google.com <pr...@google.com> #6
Hello, It will take some time to propagate. Regards,
Description
Utilities.parseCsv no longer works as stated in the documentation, but throws an error (Cannot convert to char).
It works correctly on previous runtime, but when I turn on V8 it's broken. I just confirmed this.
function testCSV() {
//EXAMPLE FROM THE DOCS at
var csvString = "a\tb\tc\nd\te\tf";
var data = Utilities.parseCsv(csvString, '\t');
Logger.log(data);
//my easy to read example, also doesn't work
csvString= "Hello;world";
data = Utilities.parseCsv(csvString, ';');
Logger.log(data);
}
What steps will reproduce the problem?
1. run the above code with runtime V8 disabled and it will work, enable it and it will break