The textQualifier property provides EGL with a way to deal with reserved characters when reading or writing a CSV record. The value of textQualifier is a CHAR(1), with quotation marks as the default, though single quotes are a common alternative.
The way that EGL uses the text qualifier character depends on the value of the style property. The text qualifier can either protect a string of characters (when style is set to CSVStyle.quoted) or serve as an escape character (when style is set to CSVStyle.escaped). For more information, see CSVRecord stereotype.
Do not use the same value for a text qualifier that you use for the delimiter property (see delimiter).
For an example that includes the textQualifier property, see CSVRecord stereotype.