System.Character.TCharHelper.IsSeparator
Delphi
function IsSeparator: Boolean; overload;
class function IsSeparator(const S: string; Index: Integer): Boolean; overload; static;
class function IsSeparator(C: UCS4Char): Boolean; overload; static;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.Character.pas | System.Character | TCharHelper |
Description
Determines whether a UTF-16 character is defined as a separator in the Unicode specifications.
This method is overloaded:
- Returns True if the character is defined as a separator in the Unicode specifications.
- Returns True if the character at
Index
in stringS
is defined as a separator in the Unicode specifications. - Returns True if the UCS4Char is defined as a separator in the Unicode specifications.