c++中string的split的替代方法——sstream应用

所要解决的问题:

请添加图片描述
c++中没有很直接的split方法,但是可以通过很多其他途径办到。这里介绍sstream的方法。

代码:

#include <cctype>
#include <iostream>
#include <set>
#include <sstream>

using namespace std;

int main(){
    set<string> exclude={"the","a","an","of","for","and"};
    int n;
    cin>>n;
    getchar();
    for(int i=0;i<n;i++){
        string s,temp;
        getline(cin, s);
        for(auto &i : s) i=tolower(i);
        istringstream in(s);
        int cnt=0;
        while(in>>temp){
            if(exclude.find(temp)==exclude.end()) cnt++;
        }
        printf("case #%d:\n",i);
        printf("%d\n",cnt);
    }
}

split的替代实现:

istringstream是一个比较有用的c++的输入输出控制类。
C++引入了ostringstream、istringstream、stringstream这三个类,要使用他们创建对象就必须包含这个头文件。
istringstream类用于执行C++风格的串流的输入操作。
ostringstream类用于执行C风格的串流的输出操作。
strstream类同时可以支持C风格的串流的输入输出操作。

istringstream的构造函数原形如下:
istringstream::istringstream(string str);
它的作用是从string对象str中读取字符。

// 本段代码出处 https://blog.csdn.net/feng_zhiyu/article/details/76646270
#include<iostream>  
#include<sstream>        //istringstream 必须包含这个头文件
#include<string>  
using namespace std;  
int main()  
{  
    string str="i an a boy";  
    istringstream is(str);  
    string s;  
    while(is>>s)  
    {  
        cout<<s<<endl;  
    }  
} 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

一个大番茄z

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值