Aide:Chr.txt

De Wiki AutoIt Français
Aller à : navigation, rechercher

Document original V3.3.6.1 :

###Function###
Chr

###Description###
Returns a character corresponding to an ASCII code.

###Syntax###
Chr ( ASCIIcode )


###Parameters###
@@ParamTable@@
ASCIIcode
	An ASCII code in the range 0-255 (e.g., 65 returns the capital letter A).
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	Returns a string containing the ASCII representation of the given code.
Failure:	Returns a blank string and sets @error to 1 if the ASCIIcode is greater than 255.
@@End@@



###Remarks###
Chr(48) == "0", Chr(57) == "9", Chr(65) == "A", Chr(90) == "Z", Chr(97) == "a", Chr(122) = "z", etc.
A complete ASCII table is in the Appendix.


###Related###
Asc, AscW, ChrW, String


###Example###
@@IncludeExample@@


Document traduit V3.3.6.1 :

###Function###
Chr

###Description###
Retourne un caractère correspondant à un code ASCII.


###Syntax###
Chr ( ASCIIcode )


###Parameters###
@@ParamTable@@
ASCIIcode
	Un code ASCII compris dans l'intervalle 0-255 (par exemple, 65 retourne la lettre capitale 

A).
@@End@@


###ReturnValue###
@@ReturnTable@@
Succès: Retourne une chaîne contenant la représentation ASCII du code donné.
Echec: Retourne une chaîne vide et assigne @error à 1 si le code ASCII est supérieur à 255.
@@End@@


###Remarks###
Chr(48) == "0", Chr(57) == "9", Chr(65) == "A", Chr(90) == "Z", Chr(97) == "a", Chr(122) = "z", etc.
Une table ASCII complète est donnée dans l'Appendice. 


###Related###
<a href="Asc.htm">Asc</a>, <a href="AscW.htm">AscW</a>, <a href="ChrW.htm">ChrW</a>, <a 

href="String.htm">String</a>


###Example###
@@IncludeExample@@


Traducteur : sylvanie

Contributeurs (pour les modifications avant le Wiki) : Tlem