Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the easiest way to convert from int to equivalent string in C++. I am aware of two methods. Is there any easier way?

1.

int a = 10;
char *intStr = itoa(a);
string str = string(intStr);

2.

int a = 10;
stringstream ss;
ss << a;
string str = ss.str();
share|improve this question
I think both methods you gave are good solutions. it depends on the context where you need to do it. If you're already working with streams, for example reading or writing a file, then your second method is the best. If you need to pass an int as a string to a function argument, then itoa could be an easy way. But most of the time, int to string conversion occurs when dealing with files, so streams are appropriate. – Charles Brunet Apr 8 '11 at 5:21
2  
How does option 1 even work for you at all? It's my understanding that itoa() takes three parameters. – b1naryatr0phy Apr 10 at 2:49

10 Answers

up vote 84 down vote accepted

C++0x introduces stoi (and variants for each numeric type) and to_string, the counterparts of the C atoi and itoa but expressed in term of std::string.

std::string s = std::to_string(42);

is therefore the shortest way I can think of.

Note: see [string.conversions] (21.5 in n3242)

share|improve this answer
11  
to_string not a member of std fix: stackoverflow.com/questions/12975341/… – Steve Nov 2 '12 at 3:02
1  
Or depending on your compiler, just set the right language standard: g++ -std=c++11 someFile.cc – Thomas M. DuBuisson Nov 29 '12 at 23:12

Probably the most common easy way wraps essentially your second choice into template named lexical_cast, so your code looks like this:

int a = 10;
string s = lexical_cast<string>(a);

lexical_cast can be found on Boost.

One nicety of this is that it supports other casts as well (e.g., in the opposite direction works just as well).

share|improve this answer
1  
Nice, I prefer Kevin's answer, though as he shows the include and namespace. Just a minor gripe. :) Good job, though! – Jason R. Mick Mar 21 at 14:15

Since "converting ... to string" is a recurring problem, I always define the SSTR() macro in a central header of my C++ sources:

#include <sstream>

#define SSTR( x ) dynamic_cast< std::ostringstream & >( \
        ( std::ostringstream() << std::dec << x ) ).str()

Usage is as easy as could be:

int x = 42;
cout << SSTR( "i is: " << x );
string s = SSTR( i );
puts( SSTR( i ).c_str() );
share|improve this answer
You forgot an ")" at the end of your SSTR definition. Otherwise, worked for me, thanks! – Wotuu Nov 5 '12 at 14:04
Actually it was a ( too many at the beginning. ;-) Since C++11 became reality, Matthieu's solution is the preferrable one, but thanks for the heads-up. – DevSolar Nov 5 '12 at 15:44

I usually use the following method:

#include <sstream>

template <typename T>
  string NumberToString ( T Number )
  {
     ostringstream ss;
     ss << Number;
     return ss.str();
  }

described in details here.

share|improve this answer

Not that I know of, in pure C++. But a little modification of what you mentioned

string s = string(itoa(a));

should work, and it's pretty short.

share|improve this answer
8  
itoa() is not a standard function! – cartoonist Nov 15 '12 at 11:25
@cartoonist: Then what is it? – Mehrdad Nov 15 '12 at 15:35
3  
This function is not defined in ANSI-C and C++. So it's not supported by some compiler such as g++. – cartoonist Nov 15 '12 at 20:49

If you have Boost installed (which you should):

#include <boost/lexical_cast.hpp>

int num = 4;
std::string str = boost::lexical_cast<std::string>(num);
share|improve this answer

sprintf() is pretty good for format conversion. You can then assign the resulting C string to the C++ string as you did in 1.

share|improve this answer
1  
and hope the buffer you used is big enough... – Matthieu M. Apr 8 '11 at 6:14
Heh, yes. However, I usually rely on snprintf() and friends for anything of consequence when handling C strings. – Throwback1986 Apr 8 '11 at 12:42
namespace std
{
    inline string to_string(int _Val)
    {   // convert long long to string
        char _Buf[2 * _MAX_INT_DIG];
        snprintf(_Buf, "%d", _Val);
        return (string(_Buf));
    }
}

you can now use to_string(5)

share|improve this answer
char * bufSecs = new char[32];
char * bufMs = new char[32];
sprintf(bufSecs,"%d",timeStart.elapsed()/1000);
sprintf(bufMs,"%d",timeStart.elapsed()%1000);
share|improve this answer

Wouldn't it be easier using stringstreams?

#include <sstream>

int x=42;            //The integer
string str;          //The string
ostringstream temp;  //temp as in temporary
temp<<x;
str=temp.str();      //str is temp as string

Or make a function:

#include <sstream>

string IntToString (int a)
{
    string str;
    ostringstream temp;
    temp<<a;
    return temp.str();
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.