CSVParser
CSVParser copied to clipboard
A swift package for read and write CSV file
When i try to Write data let csv = try CSVParser(filePath: "path/to/csvfile") // get every row in csv below line throws an error after updating to 4.1 csv[0] = ["test0",...
``` extension CSVParser: RangeReplaceableCollection { public func replaceSubrange(_ subrange: Range, with newElements: C) where C : Collection, C.Iterator.Element == Array { self._rows.replaceSubrange(subrange, with: newElements) } public func reserveCapacity(_ n: Int)...
There is no Podspec for use with CocoaPods. Please add the podspec.
Whenever one of my project is run with CSVParser as one of its frameworks (and even when it is the only framework used in the entire project), and run on...
I got an error when running an app on Ubuntu. ``` Fatal error: init(contentsOfFile:usedEncoding:) is not yet implemented: file Foundation/NSString.swift, line 1308 ``` It's caused by this line ```swift public...
Hi, thanks for great library! Have some issues: (1) I have some problems in text encoding in Russian excel file, what can cause this issue? (2) Also, it would be...
Could you set an explicit iOS target version to something like 8.0 9.0 for backwards compatibility, because while building with Carthage it assumes its latest version which does not allow...