溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

C++ format函數(shù)與字符串分割和合并

發(fā)布時(shí)間:2024-10-11 11:02:36 來源:億速云 閱讀:83 作者:小樊 欄目:編程語言

在 C++ 中,可以使用 <sstream> 庫中的 stringstream 類來實(shí)現(xiàn)字符串的格式化、分割和合并。

  1. 字符串格式化

使用 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.
  1. 字符串分割

使用 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
  1. 字符串合并

使用 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!
向AI問一下細(xì)節(jié)

免責(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)容。

c++
AI