c++字符串分割( split string)

利用工厂模式的设计方法,为装饰者模式创建对象,写了个简单的字符串分割

#include <string>
#include <iostream>
#include <vector>
using namespace std;


void substring(  string originString,vector<string> &splittedString  ){
    int begin = 0;
    size_t len = originString.length();
    for(int i = 0;i<=len;i++){
        if(originString[i] == ',')        {
            splittedString.push_back(originString.substr(begin,i - begin));
                    begin = i+1   ;     
               }          
    }
      splittedString.push_back(originString.substr(begin, len - begin));     
}    

int main(){
    vector<string> splittedString;// = {string("hello"),string("hello"),string("hello")};
    string originString = "apple,banana,orange";
    substring(originString, splittedString);
    for( int i = 0;i<=2;i++)
        cout<<splittedString[i]<<'\n';        
    getchar();
    return 0;
};    

  

  想了想,觉得c语言用字符指针实现起来不会这么臃肿

转载于:https://www.cnblogs.com/Kelvinshere/archive/2013/03/04/2943440.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值