System.Classes.TStrings.StrictDelimiter

From RAD Studio API Documentation
Jump to: navigation, search

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.