在C++中,可以使用<sstream>
库中的stringstream
和getline()
函数来将字符串分割成单词。以下是一个示例代码:
#include <iostream>
#include <sstream>
#include <vector>
#include <string>
std::vector<std::string> split(const std::string& str, char delim) {
std::vector<std::string> tokens;
std::stringstream ss(str);
std::string token;
while (std::getline(ss, token, delim)) {
tokens.push_back(token);
}
return tokens;
}
int main() {
std::string str = "Hello, World! This is a test.";
char delim = ' ';
std::vector<std::string> words = split(str, delim);
for (const auto& word : words) {
std::cout << word << std::endl;
}
return 0;
}
在这个示例中,我们定义了一个名为split
的函数,它接受一个字符串和一个分隔符作为参数,并返回一个包含分割后的单词的vector
。我们使用stringstream
来读取字符串,并使用getline()
函数来获取以分隔符分隔的单词。然后,我们将这些单词添加到tokens
向量中,并在main
函数中打印它们。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。