Boris Yasen
11/14/2023, 8:06 PMN/file
even the string is inside quote mark, the columns are not showing properly.
iterator.each(function (line) {
// Update the total based on the line value
let lineValues = line.value.split(',');
})
If csv is 5, "Hello, Brother", 10
then that lineValues has 4 columns (5, "Hello, Brother", 10).
How could I fix this? Anyhelp would be appreciated.erictgrubaugh
11/14/2023, 8:38 PMpapaparse.js
for parsing CSV: https://www.papaparse.com/scottvonduhn
11/14/2023, 8:40 PMBoris Yasen
11/14/2023, 9:01 PM