OutputVar := MfCharUnicodeInfo.GetNumericValue(ch)
OutputVar := MfCharUnicodeInfo.GetNumericValue(s, index)
Converts the specified numeric Unicode character to a decimal number.
Converts the specified numeric Unicode character to a decimal number for the character in string s at the location of Zero-based index.
ch
The Unicode character for which to get the digit value. Can be instance of MfChar, A single char in a var or a string var 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.
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 MfNotSupportedException of incorrect overload.
Throws MfArgumentOutOfRangeException is outside the range of valid indexes in s.
Throws MfArgumentException if ch, s or index are object but not of the expected type.
Static Method.
The ch parameter must be the Char representation of a numeric value. For example, if ch is "5", the return value is 5. However, if ch 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.
Method assumes that ch 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