用std::stringstream举个例子
时间: 2023-06-09 17:02:55 浏览: 98
C++中stringstream的用法和实例
当然,我很乐意回答你的问题。可以使用 std::stringstream 对一个字符串进行操作。
例如,以下代码段演示了如何使用 std::stringstream 对字符串进行操作并将其输出到控制台:
```c++
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
int main()
{
string s = "Hello, World! This is a test.";
stringstream ss(s);
string word;
while (ss >> word)
{
cout << word << endl;
}
return 0;
}
```
输出:
```
Hello,
World!
This
is
a
test.
```
此代码将字符串 s 中的单词逐个提取并打印到控制台上。
希望这个例子能够帮助您更好地理解 std::stringstream 的用法。
阅读全文