User Tools

Site Tools


fr:fromradix

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

fr:fromradix [2016/01/01 22:44]
fr:fromradix [2020/02/28 10:46] (current)
Line 1: Line 1:
 +===== FromRadix =====
  
 +==== Format ====
 +
 +**fromradix** ( //string//,//base// )
 +
 +==== Description ====
 +Retourne l'entier représenté par la chaîne de caractères //string// dans la base //base//
 +==== Exemple ====
 +
 +<code>print fromradix("ffef",16)
 +print fromradix("1001101", 2)
 +print fromradix("a1z9",36)
 +</code>
 +Affichera :\\
 +<code>65519
 +77
 +469125
 +</code>
 +
 +==== Disponible depuis la version ==== 
 +0.9.9.45
 +
 +==== Voir Aussi ====
 +{{page>fr:start#Conversion des bases de numération&noheader}}