43

I noticed to my glee that C++11 has a std::sto@ family of functions for easily unpacking ints/floats/longs whatever from strings. I'm surprised however, that the opposite isn't implemented. Why didn't the standards committee include a std::itos family of functions for going from ints/floats/whatever (back) to strings?

Deduplicator
  • 8,591
  • 5
  • 31
  • 50
Doug T.
  • 11,642
  • 5
  • 43
  • 69

1 Answers1

44

I was mistaken, there is a set of "Xtos" functions, they are all just named to_string. Each to_string is overloaded to take a different basic type, i.e.:

std::string to_string(float f);
std::string to_string(int f);
...

See here for more info.

Doug T.
  • 11,642
  • 5
  • 43
  • 69