Data.DBXPlatform.TDBXTokenizer.Create
Delphi
constructor Create(const Original: string; const Delimiters: string);
C++
__fastcall TDBXTokenizer(const System::UnicodeString Original, const System::UnicodeString Delimiters);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
constructor | public | Data.DBXPlatform.pas Data.DBXPlatform.hpp |
Data.DBXPlatform | TDBXTokenizer |
Description
Creates a TDBXTokenizer instance.
This constructor creates an instance of the TDBXTokenizer class. The Original parameter specifies a UnicodeString value that represents the token's name, while the Delimiters parameter specifies the delimiter passed as a UnicodeString.
A tokenizer is created from two strings, a source (Original) string and a delimiter (Delimiter) string. Any characters in the delimiter string separate tokens in the source string, while any other characters are part of the tokens themselves.