C++以逗号分割字符串
时间: 2023-07-11 18:03:33 浏览: 259
可以使用stringstream和getline来实现C++中以逗号分割字符串的操作,示例代码如下:
```c++
#include <iostream>
#include <sstream>
#include <string>
int main() {
std::string str = "apple,banana,orange";
std::stringstream ss(str);
std::string token;
while (getline(ss, token, ',')) {
std::cout << token << std::endl;
}
return 0;
}
```
输出结果为:
```
apple
banana
orange
```
在这个例子中,我们首先定义了一个字符串`str`,里面包含了三个水果,每个水果之间用逗号分隔。然后我们使用stringstream将字符串转换成了一个流,接着使用getline函数从流中读取每个水果,并以逗号作为分隔符,将每个水果存储到字符串变量`token`中,并输出`token`的值。最后,我们得到了三个水果的名称。
相关问题
c++逗号分割字符串
在C++中,可以使用stringstream和getline函数来逗号分割字符串。以下是示例代码:
```c++
#include <iostream>
#include <sstream>
#include <string>
#include <vector>
using namespace std;
int main() {
string str = "apple,banana,orange,grape";
vector<string> tokens;
stringstream ss(str);
string token;
while (getline(ss, token, ',')) {
tokens.push_back(token);
}
for (auto t : tokens) {
cout << t << endl;
}
return 0;
}
```
在这里,我们首先将字符串"apple,banana,orange,grape"存储在一个名为str的字符串变量中。然后,我们创建一个名为tokens的字符串向量来存储逗号分割后的单词。接下来,我们使用stringstream将字符串转换为输入流,并使用getline函数从输入流中读取单词,并使用逗号作为分隔符。最后,我们使用for循环遍历tokens向量并打印每个单词。
c++根据逗号截取string字符串
你可以使用C++的字符串流 stringstream 来实现根据逗号截取字符串。具体步骤如下:
1. 包含头文件 <sstream>
2. 定义字符串流对象 stringstream ss(str),其中 str 是要截取的字符串。
3. 使用 getline 函数从字符串流对象 ss 中读取以逗号为分隔符的子串。
代码如下:
```cpp
#include <iostream>
#include <sstream>
using namespace std;
int main() {
string str = "hello,world,how,are,you";
stringstream ss(str);
string substr;
while (getline(ss, substr, ',')) {
cout << substr << endl;
}
return 0;
}
```
输出:
```
hello
world
how
are
you
```
阅读全文