Interface CommonOptions

CSV Common Options.

interface CommonOptions {
    delimiter?: string;
    quotation?: string;
}

Hierarchy (view full)

Properties

delimiter?: string

CSV field delimiter. If you want to parse TSV, specify '\t'.

Remarks

Detail restrictions are as follows:

  • Must not be empty
  • Must be a single character
    • Multi-byte characters are not supported
  • Must not include CR or LF
  • Must not be the same as the quotation

Default

','
quotation?: string

CSV field quotation.

Default

'"'