raghav
02/19/2023, 9:52 PMobj_rawCSV = file.load(i_rawCsvFileId);
obj_csvContent = obj_rawCSV.getContents();
obj_csvContent = obj_csvContent.split(/\n|\n\r/);
a_RowData = obj_csvContent[index].split(",");
Once I split the columns for each row its giving different number of columns for each row. Is there anyway I can iterate through the columns of CSV, without splitting it with comma?David B
02/19/2023, 9:58 PMDavid B
02/19/2023, 9:59 PMfile.reader
splitting incorrectlybattk
02/19/2023, 10:28 PMDavid B
02/19/2023, 10:29 PMcsvFile.lines.iterator
incorrectly splitting values that contained newline characters. See module snippetDavid B
02/19/2023, 10:32 PMraghav
02/19/2023, 10:33 PMDavid B
02/19/2023, 10:34 PMerictgrubaugh
02/19/2023, 11:48 PMerictgrubaugh
02/19/2023, 11:48 PMraghav
02/20/2023, 12:30 AM