quote_char property

CsvDataLoadOptions.quote_char property

Gets or sets the character that is used to quote field values.

@property
def quote_char(self) -> str:
    ...

@quote_char.setter
def quote_char(self, value: str):
    ...

Remarks

The default value is ‘"’ (quotation mark).

Double the character to place it into quoted text.

See Also