vote up 11 vote down star
8

I was wonding if there was an alternative to itoa() for converting an integer to a string because when I run it in visual Studio I get warnings, and when I compile my program under Linux, it won't even compile.

Thanks,

tomek

flag

When asking a question such as this, you should provide (1) sample code showing what you are doing, and (2) output from the compiler showing the output messages (warnings and/or errors as appropriate). This will make it easier for people to help you. – Greg Hewgill Oct 23 '08 at 0:24
Basically the inverse of this question. stackoverflow.com/questions/200090/… Answer is the same though. – Martin York Oct 23 '08 at 3:48

10 Answers

vote up 22 vote down check

Using C++ streams:

#include <sstream>

int i = 5;
std::string s;
std::stringstream out;
out << i;
s = out.str();

Taken from http://notfaq.wordpress.com/2006/08/30/c-convert-int-to-string/

link|flag
Too bad Windows CE derived platforms doesn't have iostreams by default. The way to go there is preferaby with the _itoa<> family. – Johann Gerell Oct 23 '08 at 17:31
how do you clear the stringstream? – Tomek Oct 23 '08 at 19:31
net.pku.edu.cn/~course/cs101/… – spoulson Oct 24 '08 at 17:30
vote up 15 vote down

boost::lexical_cast works pretty well.

#include <boost/lexical_cast.hpp>
int main(int argc, char** argv) {
    std::string foo = boost::lexical_cast<std::string>(argc);
}
link|flag
vote up 11 vote down

Try sprintf():

char str[12];
int num = 3;
sprintf(str, "%d", num); // str now contains "3"

sprintf() is like printf() but outputs to a string.

Also, as Parappa mentioned in the comments, you might want to use snprintf() to stop a buffer overflow from occuring (where the number you're converting doesn't fit the size of your string.) It works like this:

snprintf(str, sizeof(str), "%d", num);
link|flag
I was just typing that. You beat me for seconds :) – Marcel Tjandraatmadja Oct 23 '08 at 0:22
1  
sprintf() isn't C++. It's C. – OJ Oct 23 '08 at 0:30
1  
You should use snprintf() to avoid buffer overflows. It's only a one line change in the above example: snprintf(str, sizeof(str), "%d", num); – Parappa Oct 23 '08 at 0:33
IMHO Stringstreams would be a better option. – mdec Oct 23 '08 at 0:45
vote up 2 vote down

Allocate a string of sufficient length, then use snprintf.

link|flag
vote up -2 vote down

Most of the above suggestions technically aren't C++, they're C solutions.

Look into the use of std::stringstream.

link|flag
Is C++ not a superset of C any more, then? I was under the impression that <cstdlib> and <stdlib.h> were mandated by the C++ standard ;-) – Steve Jessop Oct 23 '08 at 2:00
@OJ: "technically aren't C++" - That's nitpicking (and to nitpick further, as onebyone mentions most of them are technically in C++), especially since the OP was looking for a no-warning replacement for itoa(). – Michael Burr Oct 23 '08 at 2:07
Actually, to nitpick my own nitpick, C++ is only a (sort-of) superset of C89, not C99. So possibly sprintf is C++, but snprintf isn't (although compilers give you it anyway). But it's fun to say that standard features you dislike aren't really part of the standard at all. "int" is C, not C++. See? – Steve Jessop Oct 23 '08 at 2:41
1  
And if that fails, you mutter darkly that they're "deprecated", point to an article by Stroustrup or Sutter explaining why they prefer not to use them, and infer that this means nobody may ever use them. – Steve Jessop Oct 23 '08 at 2:42
vote up 6 vote down

Behind the scenes, lexical_cast does this:

std::stringstream str;
str << myint;
std::string result;
str >> result;

If you don't want to "drag in" boost for this, then using the above is a good solution.

link|flag
vote up 0 vote down

Note that all of the stringstream methods may involve locking around the use of the locale object for formatting. This may be something to be wary of if you're using this conversion from multiple threads...

See here for more. http://stackoverflow.com/questions/225362/convert-a-number-to-a-string-with-specified-length-in-c#226719

link|flag
vote up 6 vote down

Archeology

itoa was a non-standard helper function designed to complement the atoi standard function, and probably hiding a sprintf (Most its features can be implemented in terms of sprintf): http://www.cplusplus.com/reference/clibrary/cstdlib/itoa.html

The C Way

Use sprintf. Or snprintf. Or whatever tool you find.

Despite the fact some functions are not in the standard, as rightly mentioned by "onebyone" in one of his comments, most compiler will offer you an alternative (e.g. Visual C++ has its own _snprintf you can typedef to snprintf if you need it).

The C++ way.

Use the C++ streams (in the current case std::stringstream (or even the deprecated std::strstream, as proposed by Herb Sutter in one of his books, because it's somewhat faster).

Conclusion

You're in C++, which means that you can choose the way you want it:

  • The faster way (i.e. the C way), but you should be sure the code is a bottleneck in your application (premature optimizations are evil, etc.) and that your code is safely encapsulated to avoid risking buffer overruns.

  • The safer way (i.e., the C++ way), if you know this part of the code is not critical, so better be sure this part of the code won't break at random moments because someone mistook a size or a pointer (which happens in real life, like... yesterday, on my computer, because someone thought it "cool" to use the faster way without really needing it).

link|flag
vote up 0 vote down

On Windows CE derived platforms, there are no iostreams by default. The way to go there is preferaby with the _itoa<> family, usually _itow<> (since most string stuff are Unicode there anyway).

link|flag
vote up 1 vote down

Try Boost.Format or FastFormat, both high-quality C++ libraries:

int i = 10;
std::string result;

WIth Boost.Format

result = str(boost::format("%1%", i));

or FastFormat

fastformat::fmt(result, "{0}", i);
fastformat::write(result, i);

Obviously they both do a lot more than a simple conversion of a single integer

link|flag

Your Answer

Get an OpenID
or

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