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
This project does support parsing TSV (Tab-Separated Values) format to some degree by explicitly assigning the delimiter to "\t" (see also #7). However, TSV does (usually) follow some stricter definition and does not follow CSV's escaping logic. For example, TSV requires that each line represents a full record without any escaping and requires that the first line MUST contain the field names. See also the specs for text/tab-separated-values at https://www.iana.org/assignments/media-types/text/tab-separated-values.
This project does support parsing TSV (Tab-Separated Values) format to some degree by explicitly assigning the delimiter to
"\t"
(see also #7). However, TSV does (usually) follow some stricter definition and does not follow CSV's escaping logic. For example, TSV requires that each line represents a full record without any escaping and requires that the first line MUST contain the field names. See also the specs fortext/tab-separated-values
at https://www.iana.org/assignments/media-types/text/tab-separated-values.See also clue/reactphp-tsv#1
The text was updated successfully, but these errors were encountered: