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

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"?

share|improve this question
13  
How about some of the examples from the following: codeproject.com/KB/recipes/Tokenizer.aspx They are very efficient and somewhat elegant. – Matthieu N. Nov 2 '10 at 5:00
4  
@Rubenvb: I got here via google when trying to do just what the asker is asking. The purpose is to transfer knowledge, and the question asks just what other people would ask. Evidently from the question's vote count, this is a common question, stated the way askers see it. – Phil H Apr 13 '11 at 10:06
2  
@Obediah hasn't logged on since '08. Indignant comments about not accepting answers are probably not going to make an impact. – Justin Nov 29 '12 at 18:01

20 Answers

In alphabetical order:

std::string name = "John"; int age = 21;
std::string result;

// 1. with Boost
result = name + boost::lexical_cast<std::string>(age).

// 2. with FastFormat.Format
fastformat::fmt(result, "{0}{1}", name, age);

// 3. with FastFormat.Write
fastformat::write(result, name, age);

// 4. with IOStreams
std::stringstream sstm;
sstm << name << age;
result = sstm.str();

// 5. with itoa
char numstr[21]; // enough to hold all numbers up to 64-bits
result = name + itoa(age, numstr, 10);

// 6. with sprintf
char numstr[21]; // enough to hold all numbers up to 64-bits
sprintf(numstr, "%d", age);
result = name + numstr;

// 7. with STLSoft's integer_to_string
char numstr[21]; // enough to hold all numbers up to 64-bits
result = name + stlsoft::integer_to_string(numstr, 21, age);

// 8. with STLSoft's winstl::int_to_string()
result = name + winstl::int_to_string(age);

// 9. With Poco NumberFormatter
result = name + Poco::NumberFormatter().format(age);
  1. is safe, but slow; requires Boost (header-only); most/all platforms
  2. is safe, and fast; requires FastFormat, which must be compiled; most/all platforms
  3. is safe, and fast; requires FastFormat, which must be compiled; most/all platforms
  4. safe, slow, and verbose; requires nothing (is standard C++)
  5. is brittle (you must supply a large enough buffer), fast, and verbose; itoa() is a non-standard extension, and not guaranteed to be available for all platforms
  6. is brittle (you must supply a large enough buffer), fast, and verbose; requires nothing (is standard C++); all platforms
  7. is brittle (you must supply a large enough buffer), probably the fastest-possible conversion, verbose; requires STLSoft (header-only); most/all platforms
  8. safe-ish (you don't use more than one int_to_string() call in a single statement), fast; requires STLSoft (header-only); Windows-only
  9. is safe, but slow; requires Poco C++ ; most/all platforms
share|improve this answer
5  
Apart from the one link you've gfiven, what are you basing your performance comments on? – JamieH May 22 '09 at 21:45
3  
+1 for detailed and complete answer – deuberger Oct 13 '10 at 17:54
1  
See tinyurl.com/234rq9u for a comparison of some of the solutions – Luca Martini Oct 27 '10 at 14:08
10  
@Luca Martini: The comparisons are not complete as they don't include best of breed libraries. The BEST place to look for non-baised comparisons is: codeproject.com/KB/recipes/Tokenizer.aspx – Matthieu N. Nov 2 '10 at 4:57
Fan-ta-bulous Answer (Fantastic + Fabulous) – Wazzzy Oct 17 '11 at 7:32

If you have Boost, you can convert the integer to a string using boost::lexical_cast<std::string>(age).

Another way is to use stringstreams:

std::stringstream ss;
ss << age;
std::cout << name << ss.str() << std::endl;

A third approach would be to use sprintf or snprintf from the C library.

char buffer[128];
snprintf(buffer, sizeof(buffer), "%s%d", name.c_str(), age);
std::cout << buffer << std::endl;

Other posters suggested using itoa. This is NOT a standard function, so your code will not be portable if you use it. There are compilers that don't support it.

share|improve this answer
Boost. The library that no C++ programmer should be without. – Chris Charabaruk Oct 10 '08 at 15:14
5  
name << ss.str() would probably be more efficient than name + ss.str(). Also instead of using the literal 128 in snprintf, you should use sizeof(buffer). Numeric literals are nicer if they are used just once. – Ates Goral Oct 10 '08 at 15:24
Good points Ates. I've updated the code to reflect this. – Jay Conrod Oct 10 '08 at 15:33
Note that snprintf is not guaranteed to null-terminate the string. Here's one way to make sure it works: <pre> char buffer[128]; buffer[sizeof(buffer)-1] = '\0'; snprintf(buffer, sizeof(buffer)-1, "%s%d", name.c_str(), age); std::cout << buffer << std::endl; </pre> – Mr Fooz Oct 10 '08 at 16:06
My tendency would be to never use sprintf, since this can result in buffer-overflows. The example above is a good example where using sprintf would be unsafe if the name was very long. – terson Oct 11 '08 at 18:06
show 1 more comment
std::ostringstream o;
o << name << age;
std::cout << o.str();
share|improve this answer
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
string itos(int i) // convert int to string
{
    stringstream s;
    s << i;
    return s.str();
}

Shamelessly stolen from http://www.research.att.com/~bs/bs_faq2.html.

share|improve this answer
#include <string>
#include <sstream>
using namespace std;
string concatenate(std::string const& name, int i)
{
    stringstream s;
    s << name << i;
    return s.str();
}
share|improve this answer

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.

share|improve this answer

It seems to me that the simplest answer is to use the sprintf function:

sprintf(outString,"%s%d",name,age);
share|improve this answer
1  
snprintf can be tricky (mainly because it can potentially not include the null character in certain situations), but I prefer that to avoid sprintf buffer overflows potential problems. – terson Oct 11 '08 at 18:08
1  
sprintf(char*, const char*, ...) will fail on some versions of compilers when you pass a std::string to %s. Not all, though (it's undefined behavior) and it may depend on string length (SSO). Please use .c_str() – MSalters Oct 13 '08 at 10:42

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:

std::stringstream ss;
ss << age;
std::cout << name << ss.str() << std::endl;

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:

std::stringstream ss;
ss << name;
ss << age;
std::cout << "built string: " << ss.str() << std::endl;

The final line is just to print the result, and shows how to access the final concatenated string.

share|improve this answer

in C++0x,

string result = name + to_string (age);
share|improve this answer

Another easy way of doing it is:

name.append(age+"");
cout << name;
share|improve this answer

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

share|improve this answer
itoa is non standard: stackoverflow.com/questions/190229/… – David Dibben Oct 10 '08 at 15:11
iota is in the numeric header as of C++11. – uckelman Jan 12 '12 at 11:42

If you are using MFC, you can use a CString

CString nameAge = "";
nameAge.Format("%s%d", "John", 21);

Managed C++ also has a string formatter:

share|improve this answer

If you'd like to use + for concatenation of anything which has an output operator, you can provide a template version of operator+:

template <typename L, typename R> std::string operator+(L left, R right) {
  std::ostringstream os;
  os << left << right;
  return os.str();
}

Then you can write your concatenations in a straightforward way:

std::string foo("the answer is ");
int i = 42;
std::string bar(foo + i);    
std::cout << bar << std::endl;

Output:

the answer is 42

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.

share|improve this answer
#include <sstream>

template <class T>
inline std::string to_string (const T& t)
{
   std::stringstream ss;
   ss << t;
   return ss.str();
}

Then your usage would look something like this

   std::string szName = "John";
   int numAge = 23;
   szName += to_string<int>(numAge);
   cout << szName << endl;

Googled [and tested :p ]

share|improve this answer

As a Qt-related question was closed in favour of this one, here's how to do it using Qt:

QString string = QString("Some string %1 with an int somewhere").arg(someIntVariable);
string.append(someOtherIntVariable);

The string variable now has someIntVariable's value in place of %1 and someOtherIntVariable's value at the end.

share|improve this answer

The std::ostringstream is a good method, but sometimes this additional trick might get handy transforming the formatting to a one-liner:

#include <sstream>
#define MAKE_STRING(tokens) /****************/ \
    static_cast<std::ostringstream&>(          \
        std::ostringstream().flush() << tokens \
    ).str()                                    \
    /**/

Now you can format strings like this:

int main() {
    int i = 123;
    std::string message = MAKE_STRING("i = " << i);
    std::cout << message << std::endl; // prints: "i = 123"
}
share|improve this answer
Ick. I think I'd rather use an inline function, thank you. – T.E.D. Nov 19 '08 at 14:48

If you want to get a char* out, and have used stringstream as per what the above respondants have outlined, then do e.g.:

myFuncWhichTakesPtrToChar(ss.str().c_str());

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.

share|improve this answer

There are more options possible to use to concatenate integer (or other numerric object) with string. It is Boost.Format

#include <boost/format.hpp>
#include <string>
int main()
{
    using boost::format;

    int age = 22;
    std::string str_age = str(format("age is %1%") % age);
}

and Karma from Boost.Spirit (v2)

#include <boost/spirit/include/karma.hpp>
#include <iterator>
#include <string>
int main()
{
    using namespace boost::spirit;

    int age = 22;
    std::string str_age("age is ");
    std::back_insert_iterator<std::string> sink(str_age);
    karma::generate(sink, int_, age);

    return 0;
}

Boost.Spirit Karma claims to be one of the fastest option for integer to string conversion.

share|improve this answer

use strcat function to solve this

share|improve this answer
3  
A good answer would provide an example of how to use strcat to solve this problem. – Eric J. Jan 16 at 3:28
strcat doesnt work by the way, or i cant get it working... – kiltek Mar 9 at 13:21

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.

char loop = 'n'; //y to continue looping
int count = 1; 
stringstream out;
string prefix;
do
{
    out << count;
    prefix = out.str();
    //out.str("");//uncomment to clear the stream
    cout << prefix << endl; 
    cout << "Continue (y/n): ";
    cin >> loop;
    cout << endl;
    count++;
}while(tolower(loop) == 'y');
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.