OutputVar := MfChar.GetUnicodeCategory(c)
OutputVar := MfChar.GetUnicodeCategory(s, index)
Categorizes a specified Unicode character into a group identified by one of the MfUnicodeCategory values for c.
c
The Unicode character instance of MfChar to categorize.
Can be a var containing character or MfChar instance.
A MfUnicodeCategory value as instance of MfEnum.EnumItem that identifies the group.
Throws MfInvalidOperationException if not called as a static method.
Throws MfNotSupportedException if Overloads can not match Parameters.
MfCharUnicodeInfo.GetUnicodeCategory, MfUnicodeCategory
result := MfChar.GetUnicodeCategory("a")
MsgBox % result.ToString() ; LowercaseLetter
c := new MfChar(new MfInteger(13))
result := MfChar.GetUnicodeCategory(c)
MsgBox % result.ToString() ; Control
c := new MfChar()
c.CharCode := 2287
result := MfChar.GetUnicodeCategory(c)
MsgBox % result.ToString() ; NonSpacingMark
c := new MfChar("0x2764") ; "❤"
result := MfChar.GetUnicodeCategory(c)
MsgBox % result.ToString() ; OtherSymbol
MsgBox % result.GetType().ToString() ; EnumItem
Categorizes a specified Unicode character into a group identified by one of the MfUnicodeCategory values for the character in string s at the location of Zero-based index.
s
The String containing the Unicode character for which to get the Unicode category.
Can be MfString instance or var.
index
An integer that contains the zero-based index position of the character to categorize in s.
Can be any type that matches IsInteger or var integer.
A MfUnicodeCategory value as instance of MfEnum.EnumItem that identifies the group.
Throws MfInvalidOperationException if not called as a static method.
Throws MfNotSupportedException if Overloads can not match Parameters.
Throws MfArgumentOutOfRangeException if argument index is out of range
Static Method
MfCharUnicodeInfo.GetUnicodeCategory, MfUnicodeCategory
result := MfChar.GetUnicodeCategory("abc 123.", 0)
MsgBox % result.ToString() ; LowercaseLetter
mfStr := new MfString("abc 123.")
result := MfChar.GetUnicodeCategory(mfStr, 3)
MsgBox % result.ToString() ; SpaceSeparator
result := MfChar.GetUnicodeCategory("abc 123.", new MfUInt16(5))
MsgBox % result.ToString() ; DecimalDigitNumber
mfStr := new MfString("abc 123.")
result := MfChar.GetUnicodeCategory(mfStr, mfStr.Length - 1)
MsgBox % result.ToString() ; OtherPunctuation
MsgBox % result.GetType().ToString() ; EnumItem