您好,登錄后才能下訂單哦!
在 C++ 中,可以使用 <sstream>
庫中的 stringstream
類來實(shí)現(xiàn)字符串的格式化、分割和合并。
使用 stringstream
類的 str()
成員函數(shù)可以將其他類型的數(shù)據(jù)轉(zhuǎn)換為字符串類型。例如:
#include <iostream>
#include <sstream>
using namespace std;
int main() {
int age = 25;
string name = "Tom";
stringstream ss;
ss << "My name is " << name << " and I am " << age << " years old.";
string str = ss.str();
cout << str << endl;
return 0;
}
輸出結(jié)果為:
My name is Tom and I am 25 years old.
使用 stringstream
類的 >>
操作符可以將字符串按照指定的分隔符進(jìn)行分割。例如:
#include <iostream>
#include <sstream>
#include <vector>
using namespace std;
int main() {
string str = "apple,banana,orange";
stringstream ss(str);
string item;
vector<string> items;
while (getline(ss, item, ',')) {
items.push_back(item);
}
for (const auto& i : items) {
cout<< i << endl;
}
return 0;
}
輸出結(jié)果為:
apple
banana
orange
使用 stringstream
類的 <<
操作符可以將多個(gè)字符串按照指定的分隔符進(jìn)行合并。例如:
#include <iostream>
#include <sstream>
using namespace std;
int main() {
string str1 = "Hello";
string str2 = "world!";
stringstream ss;
ss << str1 << " " << str2;
string str = ss.str();
cout << str << endl;
return 0;
}
輸出結(jié)果為:
Hello world!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。