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"?
|
I thought this would be really simple but it's presenting some difficulties. If I have
How do I combine them to get a single string "John21"? |
|||||||||||||
|
|
In alphabetical order:
|
|||||||||||||||||||
|
|
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
|
|||||||||
|
|
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. |
|||
|
|
|
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: |
|||
|
|
|
If you'd like to use
Then you can write your concatenations in a straightforward way:
Output:
This isn't the most efficient way, but you don't need the most efficient way unless you're doing a lot of concatenation inside a loop. |
|||
|
|
Then your usage would look something like this
Googled [and tested :p ] |
||||
|
|
|
As a Qt-related question was closed in favour of this one, here's how to do it using Qt:
The string variable now has someIntVariable's value in place of %1 and someOtherIntVariable's value at the end. |
|||
|
|
|
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 you want to get a char* out, and have used stringstream as per what the above respondants have outlined, then do e.g.:
Since what the stringstream returns via str() is a standard string, you can then call c_str() on that to get your desired output type. |
|||
|
|
|
There are more options possible to use to concatenate integer (or other numerric object) with string. It is Boost.Format
and Karma from Boost.Spirit (v2)
Boost.Spirit Karma claims to be one of the fastest option for integer to string conversion. |
|||
|
|
|
use strcat function to solve 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.
|
|||
|
|