LlBase64ToInteger/fr

From Second Life Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Description

Fonction: integer llBase64ToInteger( string str );

Renvoie un integer correspondant au décodage de la chaîne base64 str considérée comme un entier grand-boutien.

• string str

Avertissements

  • Si str contient moins de 6 caractères, le résultat renvoyé est imprévisible.
  • renvoie zéro si str fait plus de 8 charactères.

Exemples

<lsl> integer valeur = llBase64ToInteger("3q0AAA==");

// affiche -559087616 llOwnerSay((string) valeur); </lsl>

Voir également

Fonctions

•  llIntegerToBase64 Convertit un integer en string base64

Articles

•  Base64
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.