在C++中,有多种方法可以将字符串分割为子字符串。下面是一些常见的方法:
<sstream>
头文件,然后使用 std::getline
函数和 std::stringstream
类来实现。#include <iostream>
#include <sstream>
#include <string>
#include <vector>
int main() {
std::string str = "Hello,World,Example,String";
std::stringstream ss(str);
std::vector<std::string> tokens;
std::string token;
while (std::getline(ss, token, ',')) {
tokens.push_back(token);
}
for (const auto& elem : tokens) {
std::cout << elem << std::endl;
}
return 0;
}
find
和 substr
。可以使用这些函数来遍历字符串并找到分隔符,然后提取子字符串。#include <iostream>
#include <string>
#include <vector>
int main() {
std::string str = "Hello,World,Example,String";
std::vector<std::string> tokens;
std::string delimiter = ",";
size_t pos = 0;
while ((pos = str.find(delimiter)) != std::string::npos) {
std::string token = str.substr(0, pos);
tokens.push_back(token);
str.erase(0, pos + delimiter.length());
}
tokens.push_back(str);
for (const auto& elem : tokens) {
std::cout << elem << std::endl;
}
return 0;
}
这些方法可以根据具体情况选择使用,根据分隔符的不同,可以调整代码中的分隔符参数。