UCharacter.IsIdentifierIgnorable(Int32) Method

Definition

Determines if the specified code point should be regarded as an ignorable character in a Java identifier.

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

Parameters

ch
Int32

code point to be determined if it can be ignored in a Unicode identifier.

Returns

true if the code point is ignorable

Attributes

Remarks

Determines if the specified code point should be regarded as an ignorable character in a Java identifier. A character is Java-identifier-ignorable if it has the general category Cf Formatting Control, or it is a non-Java-whitespace ISO control: U+0000..U+0008, U+000E..U+001B, U+007F..U+009F.<br> Up-to-date Unicode implementation of java.lang.Character.isIdentifierIgnorable().<br> See UTR #8.

Note that Unicode just recommends to ignore Cf (format controls).

Java documentation for android.icu.lang.UCharacter.isIdentifierIgnorable(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