Bonjour. J'ai deux variables : a : integer b : string Comment fait on pour mettre la valeur de a dans b ? (Sachant que je dois laisser b en string et a en integer). ex : Si a = 3, je voudrais B = '3'. Merci
utilise une fonction predefini sur Delphi qui s'appelle inttostr (avec 2 t) pour into string
Sinon si tu est en Delphi 8 ou suppérieur Convert.ToInt32(maString)
Salut , Si c'est pour Turbo Pascal , c'est Str
Merci !
inttostr (avec 2 t) pour into string
Et quand on met les majuscules, c'est IntToStr pour Integer To String, ce qui est plus logique (puisqu'il y a aussi FloatToStr, etc.)