OutputVar := MfChar.GetNumericValue(c)
OutputVar := MfChar.GetNumericValue(s, index)
Converts the specified numeric Unicode character to a decimal number for c.
Converts the specified numeric Unicode character to a decimal number for the character in string s at the location of Zero-based index. Index can be instance of MfInteger or var containing integer.
c
The character to evaluate. Can be a var containing character or MfChar instance or string var containing hex value Eg:"0x0061". containing hex value such as "0x00B2" (SUPERSCRIPT TWO) or MfInteger instance.
s
The String containing the Unicode character for which to get the numeric value. Can be MfString instance or String var. Can be instance of MfString, or var containing string.
index
The index of the Unicode character for which to get the numeric value. Can be MfInteger Instance or Integer var.
Returns the numeric value associated with the specified character.-or- -1, if the specified character is not a numeric character.
Throws MfInvalidOperationException if not called as a static method.
Throws MfNotSupportedException of incorrect overload.
Throws MfArgumentOutOfRangeException is outside the range of valid indexes in s.
Throws MfArgumentException if c, s or index are object but not of the expected type.
Static Method.
The c parameter must be the Char representation of a numeric value. For example, if c is "5", the return value is 5. However, if c is "z", the return value is -1.0.
A character has an associated numeric value if and only if it is a member of one of the following UnicodeCategory categories: DecimalDigitNumber, LetterNumber, or OtherNumber.
The method assumes that c corresponds to a single linguistic character and checks whether that character can be converted to a decimal digit. However, some numbers in the Unicode standard are represented by two Char objects that form a surrogate pair. For example, the Aegean numbering system consists of code points U+10107 through U+10133.
var := MfChar.GetNumericValue(1)
MsgBox %var% ; displays 1 as it is taken as literal same as MfChar.GetNumericValue("0x0031")
var := MfChar.GetNumericValue("0x0033") ; valid range is 0x0000 to 0xFFFF
MsgBox %var% ; displays 3 as it is taken as literal same as MfChar.GetNumericValue("0x0033")
var := MfChar.GetNumericValue("a") ; 'a' has no Unicode Numberi value
MsgBox %var% ; displays -1 as it is taken as literal same as MfChar.GetNumericValue("0x0061")
var := MfChar.GetNumericValue("0x0F33") ; '0x0F33' TIBETAN DIGIT HALF ZERO
MsgBox %var% ; displays -0.5
myInt := new MfInteger(0x0F33) ; same as new MfInteger(3891)
var := MfChar.GetNumericValue(myInt) ; '0x0F33' TIBETAN DIGIT HALF ZERO
MsgBox %var% ; displays -0.5
HexChar := 0x0F33 ; Decimal value is 3891 - (TIBETAN DIGIT HALF ZERO) has a Unicode Numeric Value of -0.5
strHexChar := "0x0F33" ; string of hex value, valid range is 0x0000 to 0xFFFF
var := MfChar.GetNumericValue(strHexChar) ; '0x0F33' TIBETAN DIGIT HALF ZERO
MsgBox %var% ; displays -0.5
var := MfChar.GetNumericValue(HexChar) ; hex char is not a string contain hex value and will not work
MsgBox %var% ; displays -1
var := MfChar.GetNumericValue("Hello World 2015", 12)
MsgBox %var% ; displays 2 - zero based index put 12 at the position of 2 in 2015
var := MfChar.GetNumericValue("Hello World 2015", 15)
MsgBox %var% ; displays 5 - zero based index put 15 at the position of 5 in 2015
myStr := new MfString("Hello world 2015")
myInt := new MfInteger(15)
var := MfChar.GetNumericValue(myStr, myInt)
MsgBox %var% ; displays 5 - zero based index put 15 at the position of 5 in 2015
myChar := new MfChar("8")
var := MfChar.GetNumericValue(myChar)
MsgBox %var% ; displays 8
myChar := new MfChar(new MfInteger(0x0F33)) ; '0x0F33' TIBETAN DIGIT HALF ZERO
var := MfChar.GetNumericValue(myChar)
MsgBox %var% ; displays -0.5