Multi diag tools
|
CSV parser that acts on a QString as input. More...
#include <CsvStringParser.h>
Public Member Functions | |
CsvStringParser () | |
Default constructor. | |
void | setCsvSettings (const CsvParserSettings &settings) |
Set CSV settings. More... | |
void | setSource (const QString &source) |
Set CSV source string. More... | |
bool | atEnd () const |
Check if parser is at end of the source. | |
Mdt::Expected< StringRecord > | readLine () |
Read one line. More... | |
Mdt::Expected< StringRecordList > | readAll () |
Read the entire CSV string. More... | |
CSV parser that acts on a QString as input.
CsvStringParser parses a CSV string. The CSV string can contain quoted section.
Definition at line 46 of file CsvStringParser.h.
Expected< StringRecordList > Mdt::PlainText::CsvStringParser::readAll | ( | ) |
Read the entire CSV string.
Definition at line 60 of file CsvStringParser.cpp.
Expected< StringRecord > Mdt::PlainText::CsvStringParser::readLine | ( | ) |
Read one line.
If a end of line is in a quoted section, it will not be threated as end of line.
This function can be used, f.ex., to store a long string to some other storage device, without having to copy the entiere source before. Reading line by line can also save some memory.
Definition at line 53 of file CsvStringParser.cpp.
void Mdt::PlainText::CsvStringParser::setCsvSettings | ( | const CsvParserSettings & | settings | ) |
Set CSV settings.
Definition at line 35 of file CsvStringParser.cpp.
void Mdt::PlainText::CsvStringParser::setSource | ( | const QString & | source | ) |
Set CSV source string.
Definition at line 42 of file CsvStringParser.cpp.