integer to string or char

4 Sep
2009
4 Sep
'09
3:11 p.m.
hi, i'd like to know what is the equivalent command to itoa in boost? i have to convert a variable from integer to string. how can i do that? thanks -- Ing Pedro Alonso Chaparro Valero Ciudad Politecnica de la Innovación iTEAM - Mobile Communications Group Polytechnic University of Valencia C\ Camino de Vera S/N, Edificio 8G 46022 Valencia, Spain

4 Sep
4 Sep
3:26 p.m.
2009/9/4 pedro chaparro
hi, i'd like to know what is the equivalent command to itoa in boost? i have to convert a variable from integer to string. how can i do that?
int i = 42; string s = lexical_cast<string>(i); http://www.boost.org/libs/conversion/lexical_cast.htm
5689
Age (days ago)
5689
Last active (days ago)
1 comments
2 participants
participants (2)
-
pedro chaparro
-
Scott McMurray