DelimiterStyle
public enum DelimiterStyle
Allows the specification of different field delimiters.
-
Specifies a pipe character with a space character on each side.
Declaration
Swift
case spacedPipe
-
Specifies a hyphen character with a space character on each side.
Declaration
Swift
case spacedHyphen
-
Specifies the tab character: ASCII
0x09
.Declaration
Swift
case tab
-
Specifies the space character: ASCII
0x20
.Declaration
Swift
case space
-
Specifies a custom field delimiters.
Declaration
Swift
case custom(String)
-
Returns the field delimiter string indicated by the receiver’s value.
Declaration
Swift
public var delimiter: String