You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I did change in CSVExport.swift
open func readFromPath(filePath: String) -> NSMutableDictionary
//let valuesArray = self.splitUsingDelimiter(row, separatedBy: "\"\(div)") as NSArray;
let valuesArray = self.splitUsingDelimiter(row, separatedBy: div) as NSArray;
func splitUsingDelimiter(_ string: String, separatedBy: String) -> [String]
return string.components(separatedBy: separatedBy) as [String];
//CORRECTION: FS 16.07.2018
// let t1 = string.components(separatedBy: separatedBy) as [String];
// return t1.filter{ !$0.isEmpty }
Currently I using the lib only for reading and the cvs file I am reading does not need to have the values in " ".
This is in the most cases not necessary and the most CVS files don’t have.
Why hard coded that values have to be in " "? Most have not.
The text was updated successfully, but these errors were encountered: