Compartir a través de


UCharacter.IsUnicodeIdentifierPart(Int32) Method

Definition

Determines if the specified character is permissible as a non-initial character of an identifier according to UAX #31 Unicode Identifier and Pattern Syntax.

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

Parameters

ch
Int32

the code point to be tested

Returns

true if the code point may occur as a non-initial character of an identifier

Attributes

Remarks

Determines if the specified character is permissible as a non-initial character of an identifier according to UAX #31 Unicode Identifier and Pattern Syntax.

Same as Unicode ID_Continue (UProperty#ID_CONTINUE).

Note that this differs from java.lang.Character#isUnicodeIdentifierPart(char) which implements a different identifier profile.

Java documentation for android.icu.lang.UCharacter.isUnicodeIdentifierPart(int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to