C++统计输入字符串中的单词数量

结合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 <iostream>
#include <vector>
#include <string>

// 计算一个字符串中有多少个单词,并保存到一个vector中 
using namespace std; 
int main(void)
{
	string text;
	int counts=0;
	vector<string> words;
	cout<<"Enter the string, end of by:*"<<endl; 
	getline(cin,text,'*');
	const string seqarators {", ;:.\"!?'\n'"}; //单词间的分界符
	size_t start{text.find_first_not_of(seqarators)};  //初始化为第一个单词的开头
	size_t end{};
	while(start != string::npos){
		end = text.find_first_of(seqarators, start + 1);  // 找到单词的结尾索引
		if(end == string::npos){  // 如果到结尾都没有找到分界符,设置end为last-1
			end = text.length();
		}
		words.push_back(text.substr(start, end - start));
		counts++;
		start = text.find_first_not_of(seqarators, end + 1);
	}
	for(auto& word:words){
		cout<<word<<endl;
	}
	cout<<"count is:"<<counts<<endl;
	
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值