web-csv-toolbox
    Preparing search index...

    Interface CommonOptions<Delimiter, Quotation>

    CSV Common Options.

    interface CommonOptions<Delimiter extends string, Quotation extends string> {
        delimiter?: Delimiter;
        quotation?: Quotation;
    }

    Type Parameters

    • Delimiter extends string
    • Quotation extends string

    Hierarchy (View Summary)

    Index

    Properties

    delimiter?: Delimiter

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

    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
    ','
    
    quotation?: Quotation

    CSV field quotation.

    '"'