fromradix ( string,base )
Retourne l'entier représenté par la chaîne de caractères string dans la base base.
print fromradix("ffef",16) print fromradix("1001101", 2) print fromradix("a1z9",36)
Affichera :
65519 77 469125
0.9.9.45
FromBinary, FromHex, FromOctal, FromRadix,ToBinary, ToHex, ToOctal, ToRadix