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
* Fix indentation of paragraphs within bullet points
* Add reference to keyPath-based column definition
* Correct line break definition
* Improve wording in a couple of places
Neither Swift nor Apple's application libraries contain a standardised method of converting data to CSV format for export. A number of packages already exist, but I wanted to build my own minimal-but-reusable library.
9
+
Neither Swift nor Apple's application libraries contain a standardised method of converting data to CSV format for export. A number of packages already exist, but I wanted to build my own minimal, reusable library.
10
10
11
11
## Features
12
12
13
13
1.**Not coupled to root object structure.**
14
14
15
-
`Codable` is great, but is limited to a single coding representation per object. It's also created with hierarchical representations – dictionaries and arrays inside other dictionaries or arries - in mind, whereas CSV is by its nature flat in structure.
15
+
`Codable` is great but is limited to a single coding representation per object. It's also created with hierarchical representations – dictionaries and arrays inside other dictionaries or arries - in mind, whereas CSV is by its nature flat in structure.
16
16
17
-
I also need CSV outputs with different columns for different purposes, so SwiftCSVEncoder provides a `CSVTable` object that defines which columns to use:
17
+
I also need CSV outputs with different columns for different purposes, but which might each serialize the same object with different columns. So SwiftCSVEncoder provides a `CSVTable` object that defines which columns to use:
18
18
19
19
```swift
20
20
let table: CSVTable<Customer> =CSVTable(
@@ -26,22 +26,28 @@ Neither Swift nor Apple's application libraries contain a standardised method of
26
26
)
27
27
```
28
28
29
+
Where a column's attribute block does nothing but access a property, a keyPath-based shortcut may be used.
30
+
31
+
```swift
32
+
CSVColumn("Name", \.name)
33
+
```
34
+
29
35
2.**Always include column headers as the first row.**
30
36
31
37
3.**Automatic quoting of strings, but only when needed.**
32
38
33
-
Including freeform text in CSVs is fraught with difficulties, because not all CSV importers handle things like new lines or embedded special characters (`"`, `,`) in the same way. SwiftCSVEncoder currently supports only one set of encoding rules for strings:
39
+
Including freeform text in CSVs is fraught with difficulties because not all CSV importers handle things like new lines or embedded special characters (`"`, `,`) in the same way. SwiftCSVEncoder currently supports only one set of encoding rules for strings:
34
40
35
41
* If the text includes a comma (`,`), a newline (`\n`) or double quotes (`"`), or if it has leading or trailing whitespace, then the whole string is enclosed in double quotation marks.
36
42
* Any double quotes within the text are escaped by being doubled, so the text `This is C.S.Lewis's sequel to "The Lion, The Witch and the Wardrobe"` would be emitted as `"This is C.S.Lewis's sequel to ""The Lion, The Witch and the Wardrobe"""`.
37
43
38
44
4.**Default delimiter and line-ending**
39
45
40
-
The CSVs emitted by SwiftCSVEncoder separate fields only by commas. Each line is terminated by a `\n` character. If you want different options, then (for now) look elsewhere.
46
+
The CSVs emitted by SwiftCSVEncoder separate fields only by commas. Each line is terminated by the `\r\n` character. If you want different options, then (for now) look elsewhere.
41
47
42
48
5.**Optional control over `Date` format**
43
49
44
-
`Date` objects are natively handled, but the format in which they are converted to strings might vary. Each `CSVTable` supports a configuration object that includes a `dateEncodingStrategy`. The default is to use a full date/time ISO 8601-compliant format.
50
+
`Date` objects are natively handled, but the format in which they are converted to strings might vary. Each `CSVTable` supports a configuration object that includes a `dateEncodingStrategy`. The default is to use a full date/time ISO 8601-compliant format.
0 commit comments