The type of the header row
Protected ReadonlyassemblerProtected ReadonlylexerParse a chunk of CSV string data
Optionalchunk: stringCSV string chunk to parse (optional for flush)
Optionaloptions: CSVParserParseOptionsParse options
Iterable iterator of parsed CSV records
Flexible CSV Parser for string input with array output format. Combines StringCSVLexer and CSVRecordAssembler to return records as arrays.
Remarks
This class implements StringArrayCSVParser interface and enforces array output format. For type-safe usage, use the createStringCSVParser() factory function.
This is a low-level API that accepts CSVProcessingOptions (excluding execution strategy). For high-level APIs with execution strategy support, use parseString() and related functions.
Example