Merge pull request #30 from yaslab/update-readme

Update README.md
This commit is contained in:
Yasuhiro Hatta 2017-07-09 15:19:19 +09:00 committed by GitHub
commit 21ba14ace9
1 changed files with 6 additions and 0 deletions

View File

@ -23,6 +23,8 @@ while let row = csv.next() {
### From file
NOTE: The default character encoding is `UTF8`.
```swift
import Foundation
import CSV
@ -86,6 +88,8 @@ let csv = try! CSV(stream: stream,
### Write to memory and get a CSV String
NOTE: The default character encoding is `UTF8`.
```swift
import Foundation
import CSV
@ -115,6 +119,8 @@ print(csvString)
### Write to file
NOTE: The default character encoding is `UTF8`.
```swift
import Foundation
import CSV