Freigeben über


UCharacter.IsSpaceChar(Int32) Method

Definition

Determines if the specified code point is a Unicode specified space character, i.

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

Parameters

ch
Int32

code point to determine if it is a space

Returns

true if the specified code point is a space character

Attributes

Remarks

Determines if the specified code point is a Unicode specified space character, i.e. if code point is in the category Zs, Zl and Zp. Up-to-date Unicode implementation of java.lang.Character.isSpaceChar().

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