String split options used in TStringHelper.Split.
Source position: syshelph.inc line 64
type TStringSplitOptions = ( |
||
None, |
|
No options specified. The default. |
ExcludeEmpty, |
|
Do not include empty strings in the result. |
ExcludeLastEmpty |
|
Only exclude the last element if it is empty. |
); |
TStringSplitOptions describes the possible options for TStringHelper.Split.
TStringHelper.Split |
|
Split a string in a number of parts. |