Character.IsAlphabetic(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines if the specified character (Unicode code point) is alphabetic.
[Android.Runtime.Register("isAlphabetic", "(I)Z", "")]
public static bool IsAlphabetic (int codePoint);
[<Android.Runtime.Register("isAlphabetic", "(I)Z", "")>]
static member IsAlphabetic : int -> bool
Parameters
- codePoint
- Int32
the character (Unicode code point) to be tested.
Returns
true
if the character is a Unicode alphabet
character, false
otherwise.
- Attributes
Remarks
Determines if the specified character (Unicode code point) is alphabetic.
A character is considered to be alphabetic if its general category type, provided by Character#getType(int) getType(codePoint)
, is any of the following: <ul> <li> UPPERCASE_LETTER
<li> LOWERCASE_LETTER
<li> TITLECASE_LETTER
<li> MODIFIER_LETTER
<li> OTHER_LETTER
<li> LETTER_NUMBER
</ul> or it has contributory property Other_Alphabetic as defined by the Unicode Standard.
Added in 1.7.
Java documentation for java.lang.Character.isAlphabetic(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.