User Tools

Site Tools


fr:fromoctal

Differences

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

Link to this comparison view

fr:fromoctal [2016/01/01 22:44]
fr:fromoctal [2020/02/28 10:46] (current)
Line 1: Line 1:
 +===== FromHex =====
  
 +==== Format ====
 +
 +**fromoctal** ( //string// )
 +
 +==== Description ====
 +Retourne l'entier représenté par la chaîne de caractères octale (base 8) //string// passée en paramètre. La représentation octale utilise 8 valeurs par digit (0-7).
 +
 +==== Exemple ====
 +
 +<code>print fromhex("10")
 +print fromhex("77")
 +</code>
 +Affichera\\
 +<code>8
 +63
 +</code>
 +
 +==== Disponible depuis la version ==== 
 +0.9.9.45
 +
 +==== Voir Aussi ====
 +{{page>fr:start#Conversion des bases de numération&noheader}}