We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c6ec2c commit ec54567Copy full SHA for ec54567
functions/strings/str_getcsv.js
@@ -15,6 +15,7 @@ example 5: str_getcsv('"row2""cell1",row2cell2,"row2""""cell3"'
15
returns 5: ['row2"cell1', 'row2cell2', 'row2""cell3']
16
example 6: str_getcsv('row1cell1,"row1,cell2","row1"",""cell3"', null, null, '"');
17
returns 6: ['row1cell1', 'row1,cell2', 'row1","cell3'];
18
+Should also test newlines within
19
*/
20
var i, inpLen, output = [];
21
var backwards = function(str) { // We need to go backwards to simulate negative look-behind (don't split on
0 commit comments