System.SysUtils.TStringSplitOptions
Delphi
TStringSplitOptions = (None, ExcludeEmpty, ExcludeLastEmpty);
C++
enum class DECLSPEC_DENUM TStringSplitOptions : unsigned char { None, ExcludeEmpty, ExcludeLastEmpty };
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| enum | public | System.SysUtils.pas System.SysUtils.hpp | System.SysUtils | System.SysUtils | 
Description
TStringSplitOptions controls the behavior of the TStringHelper.Split method.
You can choose one of the following options:
| Option | Description | 
|---|---|
| 
 | Provides all elements, including all empty elements. | 
| 
 | Provides elements excluding all empty elements. | 
| 
 | Provides elements excluding trailing empty element, if it exists. |