Is there a C++ Standard Template Library class that provides efficient string concatenation functionality, similar to C#'s StringBuilder or Java's StringBuffer?

link|improve this question

feedback

7 Answers

up vote 8 down vote accepted

I normally use either std::string or std::stringstream. I have never had any problems with these. I would normally reserve some room first if I know the rough size of the string in advance.

I have seen other people make their own optimized string builder in the distant past.

class StringBuilder {
private:
    std::string main;
    std::string scratch;

    const std::string::size_type ScratchSize = 1024;  // or some other arbitrary number

public:
    StringBuilder & append(const std::string & str) {
        scratch.append(str);
        if (scratch.size() > ScratchSize) {
            main.append(scratch);
            scratch.resize(0);
        }
        return *this;
    }

    const std::string & str() {
        if (scratch.size() > 0) {
            main.append(scratch);
            scratch.resize(0);
        }
        return main;
    }
};

It uses two strings one for the majority of the string and the other as a scratch area for concatenating short strings. It optimise's appends by batching the short append operations in one small string then appending this to the main string, thus reducing the number of reallocations required on the main string as it gets larger.

I have not required this trick with std::string or std::stringbuffer. I think it was used with a third party string library before std::string, it was that long ago. If you adopt a strategy like this profile your application first.

link|improve this answer
2  
If your scratch string never gets bigger than ScratchSize, then str() will always return an empty string. I think you meant to say "if (scratch.size() > 0)" inside the str() method. – A. Levy Jun 9 '10 at 13:37
yes you are right thanks for that, I've updated the sample. – iain Jun 9 '10 at 15:49
feedback

The C++ way would be to use std::stringstream or just plain string concats.

edit: with regards to formatting, you can do all the same formatting on a stream, but in a different way, similar to cout. or you can use a strongly typed functor which encapsulates this and provides a String.Format like interface e.g. boost::format

link|improve this answer
feedback

std::string is the C++ equivalent: It's mutable.

link|improve this answer
feedback

The std::string.append function isn't a good option because it doesn't accept many forms of data. A more useful alternative is to use std:stringstream, like so:

std::stringstream ss;

//put arbitrary formatted data into the stream
ss << 4.5 << ", " << 4 << " whatever";

//convert the stream buffer into a string
std::string str = ss.str();
link|improve this answer
feedback

You can use .append() for simply concatenating strings.

std::string s = "string1";
s.append("string2");

I think you might even be able to do:

std::string s = "string1";
s += "string2";

As for the formatting operations of C#'s StringBuilder, I believe snprintf (or sprintf if you want to risk writing buggy code ;-) ) into a character array and convert back to a string is about the only option.

link|improve this answer
No, streams are meant for formatting. – Matthieu M. Mar 17 '10 at 15:24
Not in the same way as printf or .NET's String.Format though, are they? – Andy Shellam Mar 17 '10 at 15:25
its a little disingenuous to say they are the only way though – jk. Mar 17 '10 at 16:07
@jk - they're the only way when comparing the formatting ability of .NET's StringBuilder, which is what the original question specifically asked. I did say "I believe" so I could be wrong, but can you show me a way to get StringBuilder's functionality in C++ without using printf? – Andy Shellam Mar 17 '10 at 16:41
updated my answer to include some alternative formatting options – jk. Mar 22 '10 at 10:28
feedback

Since std::string in C++ is mutable you can use that. It has a += operator and an append function.

If you need to append numerical data use the std::to_string functions.

If you want even more flexibility in the form of being able to serialise any object to a string then use the std::stringstream class. But you'll need to implement your own streaming operator functions for it to work with your own custom classes.

link|improve this answer
feedback

std::string's += doesn't work with const char* (what stuff like "string to add" appear to be), so definitely using stringstream is the closest to what is required - you just use << instead of +

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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