📜  c++ 通过 sstream 分割字符串 - C++ (1)

📅  最后修改于: 2023-12-03 14:39:56.184000             🧑  作者: Mango

C++ 通过 sstream 分割字符串

在 C++ 中分割字符串是经常需要处理的一个任务。sstring 是 C++11 中提供的一个非常方便的类,可以帮助我们实现字符串分割。

1. 以空格为分隔符分割字符串

下面的代码演示了如何使用 sstream 以空格为分隔符分割字符串:

#include <iostream>
#include <sstream>
#include <string>
#include <vector>

using namespace std;

int main() {
    string str = "Hello World C++";
    stringstream ss(str);

    string tmp;
    vector<string> words;
    while (ss >> tmp) {
        words.push_back(tmp);
    }

    for (int i = 0; i < words.size(); ++i) {
        cout << words[i] << endl;
    }

    return 0;
}

输出结果:

Hello
World
C++
2. 以特定字符为分隔符分割字符串

下面的代码演示了如何使用 sstream 以特定字符为分隔符分割字符串:

#include <iostream>
#include <sstream>
#include <string>
#include <vector>

using namespace std;

int main() {
    string str = "a.b.c.d.e";
    stringstream ss(str);
    string tmp;

    vector<string> vec;
    while (getline(ss, tmp, '.')) {
        vec.push_back(tmp);
    }

    for (int i = 0; i < vec.size(); ++i) {
        cout << vec[i] << endl;
    }

    return 0;
}

输出结果:

a
b
c
d
e
总结

sstring 是 C++ 中用于字符串处理的一个非常强大的类。通过使用 sstream 可以轻松实现字符串的分割操作。