OutputVar := MfCharUnicodeInfo.GetDecimalDigitValue(ch)
OutputVar := MfCharUnicodeInfo.GetDecimalDigitValue(s, index)
Gets the digit value of the specified numeric character.
Gets the digit value of the specified numeric character 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 decimal digit value. Can be MfString instance or string var.
index
The zero-based index of the Unicode character for which to get the decimal digit value. Can be MfInteger Instance or integer var.
Returns the decimal digit value of the specified numeric character or -1, if the specified character is not a decimal digit.
Static Method
Throws MfArgumentOutOfRangeException if index is outside the range of valid indexes in s.
Throws MfArgumentException if ch, s or index are object but not of the expected type.
var := MfCharUnicodeInfo.GetDecimalDigitValue(1)
MsgBox %var% ; displays 1 as it is taken as literal same as MfCharUnicodeInfo.GetDecimalDigitValue("0x0031")
var := MfCharUnicodeInfo.GetDecimalDigitValue("0x0033") ; valid range is 0x0000 to 0xFFFF
MsgBox %var% ; displays 3 as it is taken as literal same as MfCharUnicodeInfo.GetDecimalDigitValue("0x0033")
var := MfCharUnicodeInfo.GetDecimalDigitValue("a") ; 'a' has no Unicode Number value
MsgBox %var% ; displays -1 as it is taken as literal same as MfCharUnicodeInfo.GetDecimalDigitValue("0x0061")
var := MfCharUnicodeInfo.GetDecimalDigitValue("0x0F33") ; '0x0F33' TIBETAN DIGIT HALF ZERO
MsgBox %var% ; displays -1 does not have a Digit Value
myInt := new MfInteger(0x2788) ; same as new MfInteger(10120)
var := MfCharUnicodeInfo.GetDecimalDigitValue(myInt) ; '0x2788' CIRCLED SANS-SERIF DIGIT NINE
MsgBox %var% ; displays -1
HexChar := 0x0BEF ; Decimal value is 3055 - (TAMIL DIGIT NINE)
strHexChar := "0x0BEF" ; string of hex value, valid range is 0x0000 to 0xFFFF
var := MfCharUnicodeInfo.GetDecimalDigitValue(strHexChar) ; '0x0BEF' TAMIL DIGIT NINE
MsgBox %var% ; displays 9
var := MfCharUnicodeInfo.GetDecimalDigitValue(HexChar) ; hex char is not a string contain hex value and will not work
MsgBox %var% ; displays -1
var := MfCharUnicodeInfo.GetDecimalDigitValue("Hello World 2015", 12)
MsgBox %var% ; displays 2 - zero based index put 12 at the position of 2 in 2015
var := MfCharUnicodeInfo.GetDecimalDigitValue("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 := MfCharUnicodeInfo.GetDecimalDigitValue(myStr, myInt)
MsgBox %var% ; displays 5 - zero based index put 15 at the position of 5 in 2015
myChar := new MfCharUnicodeInfo("8")
var := MfCharUnicodeInfo.GetDecimalDigitValue(myChar)
MsgBox %var% ; displays 8
myChar := new MfCharUnicodeInfo(new MfInteger(0x0BEF)) ; '0x0BEF' TAMIL DIGIT NINE
var := MfCharUnicodeInfo.GetDecimalDigitValue(myChar)
MsgBox %var% ; displays 9