C++字符串常用操作
1、string的可以用相加來連接兩個字符串。
#include#include using namespace std; int main() { string str; str += "hello "; str += "world !"; cout << str << endl; return 0; }
2、stringstream的運用:
#include#include #include using namespace std; int main() { stringstream ss; ss << "hello"; //stringstream重載了“<<”運算符,可直接這麼利用 ss << " "; ss << "world ! "; ss << 2014; cout << ss.str() << endl; return 0; }