conversion integer ->string - Delphi/Pascal - Programmation
Marsh Posté le 22-04-2008 à 13:38:03
utilise une fonction predefini sur Delphi qui s'appelle inttostr (avec 2 t) pour into string
Marsh Posté le 22-04-2008 à 14:59:20
Sinon si tu est en Delphi 8 ou suppérieur Convert.ToInt32(maString)
Marsh Posté le 23-04-2008 à 16:43:35
Salut ,
Si c'est pour Turbo Pascal , c'est Str
Marsh Posté le 25-04-2008 à 16:16:40
loulou1707 a écrit : 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.)
Marsh Posté le 20-04-2008 à 19:13:36
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