OutputVar := MfBigInt.Parse(s)
OutputVar := MfBigInt.Parse(s, base)
Converts the s representation of a number to its MfBigInt equivalent
s
An string var of object convert.
Can be var or instance of any MfObject derived object that contains numeric value
Returns MfBigInt instance equivalent to the number contained in s. ReturnAsObject property is set to true.
Throws MfInvalidOperationException if not called as a static method.
Throws MfArgumentNullException if s is null.
Throws MfFormatException if s in incorrect format.
Throws MfException for any other errors.
Static method
Sign can be denoted with a leading + or -
Parse(s) can parse different base string values.
When s is a string var s can contain the following values after any leading sign to denote base
0x to denote hex base 16 eg: 0xFC2B4A
0b to denote binary base 2 eg: +0b1011100101011
0 to denote octal base 8 eg: 01574364
When binary value is being parsed and sign is omitted then the the first bit defines negative or positive. 1 denotes negative and 0 denotes positive.
bigI := MfBigInt.Parse(" 1574364 ") ; base 10
MsgBox % bigI.Value ; 1574364
bigI := MfBigInt.Parse(" -1574364 ") ; base 10
MsgBox % bigI.Value ; -1574364
bigI := MfBigInt.Parse("+1574364") ; base 10
MsgBox % bigI.Value ; 1574364
bigI := MfBigInt.Parse("0xFC2B4A") ; base 16
MsgBox % bigI.Value ; 16526154
bigI := MfBigInt.Parse("-0xFC2B4A") ; base 16
MsgBox % bigI.Value ; -16526154
bigI := MfBigInt.Parse("01574364") ; base 8
MsgBox % bigI.Value ; 456948
bigI := MfBigInt.Parse("-01574364") ; base 8
MsgBox % bigI.Value ; -456948
bigI := MfBigInt.Parse("+0b1011100101011") ; base 2
MsgBox % bigI.Value ; 5931
bigI := MfBigInt.Parse("0b1011100101011") ; base 2
; no leading sign so the first bit determines sign
MsgBox % bigI.Value ; -2261
bigI := MfBigInt.Parse("0b0011100101011") ; base 2
; no leading sign so the first bit determines sign
MsgBox % bigI.Value ; 1835
bigI := MfBigInt.Parse("-01574364") ; base 8
MsgBox % bigI.Value ; -456948
sb := new MfText.StringBuilder()
sb.Append("0x")
sb.Append("56")
sb.Append("ac")
bigI := MfBigInt.Parse(sb)
MsgBox % bigI.Value ; 22188
Converts the s representation of a number to its MfBigInt equivalent. Uses base value to decode s.
s
An string var of object convert.
Can be var or instance of any MfObject derived object that contains numeric value
base
The Base that s is encoding in. Base values from 2 to 95 are accepted.
Can be any type that matches IsInteger or var integer.
Returns MfBigInt instance equivalent to the number contained in s. ReturnAsObject property is set to true.
Throws MfInvalidOperationException if not called as a static method.
Throws MfArgumentNullException if s is null.
Throws MfArgumentOutOfRangeException if Base is less then 2 or greater then 95.
Throws MfFormatException if s in incorrect format.
Throws MfException for any other errors.
Static Method
Sign can be denoted with a leading + or -
When binary (base 2) value is being parsed and sign is omitted then the the first bit defines negative or positive. 1 denotes negative and 0 denotes positive.
bigI := MfBigInt.Parse(" 1574364 ", 10) ; base 10
MsgBox % bigI.Value ; 1574364
bigI := MfBigInt.Parse("0xFC2B4A", 16) ; base 16
MsgBox % bigI.Value ; 16526154
bigI := MfBigInt.Parse("FC2B4A", 16) ; base 16
MsgBox % bigI.Value ; 16526154
bigI := MfBigInt.Parse("-FC2B4A", 16) ; base 16
MsgBox % bigI.Value ; -16526154
bigI := MfBigInt.Parse("01574364", 8) ; base 8
MsgBox % bigI.Value ; 456948
bigI := MfBigInt.Parse("1574364", 8) ; base 8
MsgBox % bigI.Value ; 456948
bigI := MfBigInt.Parse("+0b1011100101011", 2) ; base 2
MsgBox % bigI.Value ; 5931
bigI := MfBigInt.Parse("+1011100101011", 2) ; base 2
MsgBox % bigI.Value ; 5931
bigI := MfBigInt.Parse("01011100101011", 2) ; base 2 first bit is 0 which is considered positive
MsgBox % bigI.Value ; 5931
bigI := MfBigInt.Parse("1011100101011", 2) ; base 2 first bit is 1 which is considered negative
MsgBox % bigI.Value ; -1835
bigI := MfBigInt.Parse("0011100101011", 2) ; base 2 first bit is 0 which is considered positive
MsgBox % bigI.Value ; 1835
bigI := MfBigInt.Parse("10012001001112202200", 3) ; base 3
MsgBox % bigI.Value ; 1234567890
bigI := MfBigInt.Parse("B9D6B5AA", 14) ; base 14
MsgBox % bigI.Value ; 1234567890
bigI := MfBigInt.Parse("14PC0MI", 32) ; base 32
MsgBox % bigI.Value ; 1234567890
bigI := MfBigInt.Parse("19bWBI", 64) ; base 64
MsgBox % bigI.Value ; 1234567890
bigI := MfBigInt.Parse("Kpsio", 88) ; base 88
MsgBox % bigI.Value ; 1234567890
bigI := MfBigInt.Parse("FE Lj", 95) ; base 95
MsgBox % bigI.Value ; 1234567890