GetUnicodeCategory()

Namespace ›› System ›› MfChar ›› Methods ››
Parent Previous Next

GetUnicodeCategory()

OutputVar := MfChar.GetUnicodeCategory(c)
OutputVar := MfChar.GetUnicodeCategory(s, index)

GetUnicodeCategory(c)

Categorizes a specified Unicode character into a group identified by one of the MfUnicodeCategory values for c.

Parameters

c

The Unicode character instance of MfChar to categorize.
Can be a var containing character or MfChar instance.

Returns

A MfUnicodeCategory value as instance of MfEnum.EnumItem that identifies the group.

Throws

Throws MfInvalidOperationException if not called as a static method.
Throws MfNotSupportedException if Overloads can not match Parameters.

Related

MfCharUnicodeInfo.GetUnicodeCategory, MfUnicodeCategory

Example

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

GetUnicodeCategory (s, index)

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.

Parameters

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.

Returns

A MfUnicodeCategory value as instance of MfEnum.EnumItem that identifies the group.

Throws

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

Remarks

Static Method

Related

MfCharUnicodeInfo.GetUnicodeCategory, MfUnicodeCategory

Example

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