fieldDelimiter property

String? fieldDelimiter
getter/setter pair

The separator for fields in a CSV file.

The separator can be any ISO-8859-1 single-byte character. To use a character in the range 128-255, you must encode the character as UTF8. BigQuery converts the string to ISO-8859-1 encoding, and then uses the first byte of the encoded string to split the data in its raw, binary state. BigQuery also supports the escape sequence "\t" to specify a tab separator. The default value is a comma (',').

Optional.

Implementation

core.String? fieldDelimiter;