Bonjour je voudrais savoir si il est possible de convertir un entier en chaine de caractères afin de pouvoir afficher mon entier dans une fenetre graphique.
Bonjour je voudrais savoir si il est possible de convertir un entier en chaine de caractères afin de pouvoir afficher mon entier dans une fenetre graphique.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4 Printf.sprintf : ('a, unit, string) format -> 'a Same as Printf.fprintf, but instead of printing on an output channel, return a string containing the result of formatting the arguments.
http://caml.inria.fr/pub/docs/manual...ef/Printf.html
string_of_int ?
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3 # string_of_int;; - : int -> string = <fun>
string_of_int existe encore en OCaml ? je connaissais sous camllight
Printf est plus puissant, mais pour de petits trucs comme ça, il vaut mieux utiliser string_of_int.
Partager