Open main menu

RAD Studio API Documentation β

System.Classes.TStrings.StrictDelimiter

Delphi

property StrictDelimiter: Boolean read GetStrictDelimiter write SetStrictDelimiter;

C++

__property bool StrictDelimiter = {read=GetStrictDelimiter, write=SetStrictDelimiter, nodefault};

Properties

Type Visibility Source Unit Parent
property public
System.Classes.pas
System.Classes.hpp
System.Classes TStrings

Description

Determines how the Delimiter property is used.

If StrictDelimiter is True, individual strings in DelimitedText are only separated by Delimiter or quoted between QuoteChar. If StrictDelimiter is False, spaces and non-printable character are also used as delimiters.

Tip: You can set QuoteChar to the null character (#0 in Delphi, '\0' in C++) if you do not want quoted strings to be extracted as if they where surrounded by Delimiter.