言語

Character.IsUnicodeIdentifierPart メソッド

定義

オーバーロード

名前 説明
IsUnicodeIdentifierPart(Char)

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

IsUnicodeIdentifierPart(Int32)

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

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 です>それは結合マーク <li です>この文字の<を返>liisIdentifierIgnorabletrue。 <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>Note:</b> このメソッドは補助文字を処理できません。 補助文字を含むすべての Unicode 文字をサポートするには、 #isUnicodeIdentifierPart(int) メソッドを使用します。

1.1 で追加されました。

Javaドキュメント。

このページの一部は、によって作成および共有され、に記載されている条件に従って使用される作業に基づく変更です。

適用対象

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 です>それは結合マーク <li です>この文字の<を返>liisIdentifierIgnorabletrue。 <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ドキュメント。

このページの一部は、によって作成および共有され、に記載されている条件に従って使用される作業に基づく変更です。

適用対象