如何打印字符串的第一个单词

如何打印字符串的第一个单词

本文介绍了如何打印字符串的第一个单词的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请帮助

标题说明了这一切

如何打印字符串的第一个单词



我尝试过:



没什么,不知道标题

只需要一些帮助这里

Please Help
The title says it all
How can i print the first word of a string

What I have tried:

Nothing, don't know The title
Just need some help here

推荐答案


#include <iostream>
#include <sstream>
using namespace std;

int main()
{
  string str = "foo bar foobar";
  istringstream iss(str);
  string first_word;
  iss >> first_word;
  cout << "first word of '" << str << "' is '" << first_word << "'" << endl;
}


这篇关于如何打印字符串的第一个单词的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-16 04:55