I thought this would be really simple but it's presenting some difficulties. If I have
string name = "John"; int age = 21;
How do I combine them to get a single string "John21"?
|
8
|
I thought this would be really simple but it's presenting some difficulties. If I have string name = "John"; int age = 21; How do I combine them to get a single string "John21"?
|
|||
|
|
|
|
If you have Boost, you can convert the integer to a string using Another way is to use stringstreams:
A third approach would be to use
Other posters suggested using |
||||||||||||
|
|
|
|
||
|
|
|
|
Shamelessly stolen from http://www.research.att.com/~bs/bs_faq2.html |
||
|
|
|
|
Herb Sutter has a good article on this subject: "The String Formatters of Manor Farm". He covers Boost::lexical_cast, std::stringstream, std::strstream (which is deprecated), and sprintf vs. snprintf. |
||
|
|
|
|
|
||
|
|
|
|
It seems to me that the simplest answer is to use the sprintf function: sprintf(outString,"%s%d",name,age); |
||||
|
|
|
Common Answer: itoa() This is bad. itoa is non-standard, as pointed out in http://stackoverflow.com/questions/190229/where-is-the-itoa-function-in-linux |
|||
|
|
|
If you are using MFC, you can use a CString
Managed C++ also has a string formatter: |
||
|
|
|
|
I don't have karma enough to comment (let alone edit), but Jay's post (currently the top-voted one at 27) contains an error. This code:
Does not solve the stated problem of creating a string consisting of a concatenated string and integer. I think Jay meant something more like this:
The final line is just to print the result, and shows how to access the final concatenated string. |
||
|
|
|
|
In alphabetical order:
|
||
|
|
|
Then your usage would look something like this
Googled [and tested :p ] |
|||
|
|
|
|
The std::ostringstream is a good method, but sometimes this additional trick might get handy transforming the formatting to a one-liner:
Now you can format strings like this:
|
||
|
|
|
If using sstream for completeness refer to http://stackoverflow.com/questions/20731/in-c-how-do-you-clear-a-stringstream-variable. Continued use of the stringstream variable causes grief, e.g.
|
||
|
|
|
|
EDITED: My former version was incorrectly written. Here's a quick one using the sprintf_s functionality.
|
||||
|