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;
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.Character.pas | System.Character | TCharHelper |
説明
UTF-16 文字が Unicode 仕様で区切り文字として定義されているかどうかを判定します。
このメソッドは、以下のようにオーバーロード(多重定義)されています。
- 文字が Unicode 仕様でセパレータとして定義されている場合は、True を返します。
- 文字列 S 内の Index に位置する文字が Unicode 仕様でセパレータとして定義されている場合は、True を返します。
- UCS4Char が Unicode 仕様でセパレータとして定義されている場合は、True を返します。