Home > Article > Backend Development > How to Concatenate Multiple Strings in C on a Single Line?
Concatenating Multiple Strings in C on a Single Line
In C#, strings and other data types can be concatenated effortlessly on a single line. However, implementing a similar functionality in C may seem daunting due to the lack of support for multiple operators in string concatenation.
Previously, concatenating multiple strings in C required separate lines like:
string s; s += "Hello world, " + "nice to see you, " + "or not.";
However, an alternative approach can replicate the desired behavior.
Utilizing Standard Template Library (STL)
The STL provides a powerful solution for seamless string concatenation using a stringstream object:
#include <sstream> #include <string> std::stringstream ss; ss << "Hello, world, " << myInt << niceToSeeYouString; std::string s = ss.str();
Using the << operator, strings and variables of different types can be concatenated into the stringstream, which is then converted into a string using str().
Additional Resources
For further insights on string concatenation in C , refer to:
The above is the detailed content of How to Concatenate Multiple Strings in C on a Single Line?. For more information, please follow other related articles on the PHP Chinese website!