次の方法で共有


Character.IsUnicodeIdentifierPart メソッド

定義

オーバーロード

IsUnicodeIdentifierPart(Int32)

指定した文字 (Unicode コード ポイント) が、最初の文字以外の Unicode 識別子の一部であるかどうかを判断します。

IsUnicodeIdentifierPart(Char)

指定した文字が、最初の文字以外の Unicode 識別子の一部である可能性があるかどうかを判断します。

IsUnicodeIdentifierPart(Int32)

指定した文字 (Unicode コード ポイント) が、最初の文字以外の Unicode 識別子の一部であるかどうかを判断します。

[Android.Runtime.Register("isUnicodeIdentifierPart", "(I)Z", "")]
public static bool IsUnicodeIdentifierPart (int codePoint);
[<Android.Runtime.Register("isUnicodeIdentifierPart", "(I)Z", "")>]
static member IsUnicodeIdentifierPart : int -> bool

パラメーター

codePoint
Int32

テストする文字 (Unicode コード ポイント)。

戻り値

true 文字が Unicode 識別子の一部である可能性がある場合。 false それ以外の場合。

属性

注釈

指定した文字 (Unicode コード ポイント) が、最初の文字以外の Unicode 識別子の一部であるかどうかを判断します。

文字は、次のいずれかのステートメントが true の場合にのみ、Unicode 識別子の一部である可能性があります。<ul><li> は、<>それが接続句読点文字 (例: '_') <li である文字 li> であり<、数字である li> は数字 (ローマ数字文字など) <li> である場合にのみ、この文字に対して><返されるtrue非間隔マーク <li>isIdentifierIgnorable です。 <li> それは文字です Other_ID_Starthttp://www.unicode.org/reports/tr44/#Other_ID_Start 。 <li> それは文字です Other_ID_Continuehttp://www.unicode.org/reports/tr44/#Other_ID_Continue 。 </ul>

このメソッドは UAX31-R1: Unicode 標準の既定の識別子要件に準拠し、UAX31 のプロファイルは次のとおりです。

Continue := Start + ID_Continue + ignorable
            Medial := empty
            ignorable := isIdentifierIgnorable(int) returns true for the character

ignorable は下位互換性のために追加されます Continue

1\.5 で追加されました。

の Java ドキュメントjava.lang.Character.isUnicodeIdentifierPart(int)

このページの一部は、Android オープンソース プロジェクトによって作成および共有され、クリエイティブ コモンズ 2.5 属性ライセンスに記載されている条件に従って使用される作業に基づく変更です。

適用対象

IsUnicodeIdentifierPart(Char)

指定した文字が、最初の文字以外の Unicode 識別子の一部である可能性があるかどうかを判断します。

[Android.Runtime.Register("isUnicodeIdentifierPart", "(C)Z", "")]
public static bool IsUnicodeIdentifierPart (char ch);
[<Android.Runtime.Register("isUnicodeIdentifierPart", "(C)Z", "")>]
static member IsUnicodeIdentifierPart : char -> bool

パラメーター

ch
Char

テストする文字。

戻り値

true 文字が Unicode 識別子の一部である可能性がある場合。 false それ以外の場合。

属性

注釈

指定した文字が、最初の文字以外の Unicode 識別子の一部である可能性があるかどうかを判断します。

文字は、次のいずれかのステートメントが true の場合にのみ、Unicode 識別子の一部である可能性があります。<ul><li> は、<>それが接続句読点文字 (例: '_') <li である文字 li> であり<、数字である li> は数字 (ローマ数字文字など) <li> である場合にのみ、この文字に対して><返されるtrue非間隔マーク <li>isIdentifierIgnorable です。 <li> それは文字です Other_ID_Starthttp://www.unicode.org/reports/tr44/#Other_ID_Start 。 <li> それは文字です Other_ID_Continuehttp://www.unicode.org/reports/tr44/#Other_ID_Continue 。 </ul>

このメソッドは UAX31-R1: Unicode 標準の既定の識別子要件に準拠し、UAX31 のプロファイルは次のとおりです。

Continue := Start + ID_Continue + ignorable
            Medial := empty
            ignorable := isIdentifierIgnorable(char) returns true for the character

ignorable は下位互換性のために追加されます Continue

<b>注:</b> このメソッドは補助文字を処理できません。 補助文字を含むすべての Unicode 文字をサポートするには、このメソッドを使用します #isUnicodeIdentifierPart(int)

1.1 で追加されました。

の Java ドキュメントjava.lang.Character.isUnicodeIdentifierPart(char)

このページの一部は、Android オープンソース プロジェクトによって作成および共有され、クリエイティブ コモンズ 2.5 属性ライセンスに記載されている条件に従って使用される作業に基づく変更です。

適用対象