输入字符串,统计单词个数

结合C++中的 size_t find_first_not_of (const char* s, size_t pos, size_t n) const; 方法和 size_t find_first_of (const char* s, size_t pos, size_t n) const;来统计字符串中单词的个数。
代码
#include
#include
#include

// 计算一个字符串中有多少个单词,并保存到一个vector中
using namespace std;
int main(void)
{
string text;
int counts = 0;
vector words;
cout << "Enter the string, end of by:*" << endl; getline(cin, text, '*'); const string separators{ ", ;:./"!?'/n'" }; //单词间的分界符

输入字符串,统计单词个数最先出现在Python成神之路

版权声明:
作者:cc
链接:https://www.techfm.club/p/20005.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>