Is there a C++ Standard Template Library class that provides efficient string concatenation functionality, similar to C#'s StringBuilder or Java's StringBuffer?
|
feedback
|
|
I normally use either I have seen other people make their own optimized string builder in the distant past.
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 | |||||||
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 | ||||
|
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:
| |||
|
feedback
|
|
You can use .append() for simply concatenating strings.
I think you might even be able to do:
As for the formatting operations of C#'s | |||||||||||
feedback
|
|
Since If you need to append numerical data use the If you want even more flexibility in the form of being able to serialise any object to a string then use the | |||
|
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 + | |||
|
feedback
|