System.Character.IsSurrogatePair
Delphi
function IsSurrogatePair(const HighSurrogate, LowSurrogate: Char): Boolean;
function IsSurrogatePair(const S: string; Index: Integer): Boolean;
C++
extern DELPHI_PACKAGE bool __fastcall IsSurrogatePair(const System::WideChar HighSurrogate, const System::WideChar LowSurrogate)/* overload */;
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.Character.pas System.Character.hpp |
System.Character | System.Character |
説明
警告: IsSurrogatePair は非推奨になっています。 TCharHelper.IsSurrogatePair を使用してください。
文字が Unicode 仕様における有効なサロゲート ペアかどうかを判定します。
この関数はオーバーロード(多重定義)されています。
'HighSurrogate'LowSurrogate が Unicode 仕様における有効なサロゲート ペアの場合は true を返します。
文字列 S 内のインデックス Index に位置する UTF-16 文字が Unicode 仕様におけるサロゲート ペアの場合は、true を返します。