您好,登錄后才能下訂單哦!
在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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。