Je dois lancer seulement 1 char
a string
. Le chemin inverse est assez simple comme str[0]
.
Ce qui suit n'a pas fonctionné pour moi :
char c = 34;
string(1,c);
//this doesn't work, the string is always empty.
string s(c);
//also doesn't work.
boost::lexical_cast<string>((int)c);
//also doesn't work.