| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 6509 人关注过本帖
标题:写一个用逗号分割string的split函数
只看楼主 加入收藏
chenwei435
Rank: 10Rank: 10Rank: 10
等 级:青峰侠
威 望:2
帖 子:322
专家分:1611
注 册:2010-11-28
结帖率:92.31%
收藏
 问题点数:0 回复次数:2 
写一个用逗号分割string的split函数
函数原型如下void splitdou(string s,vector<string>& ret)
意思就是把string对象中的字符串以逗号分割(string 中有逗号),存到容器ret中。存可以用push_back();
自己在写代码时遇到的。不是作业
我用的是c++,不是java,java中有这个函数,但是c++中没有。
搜索更多相关主题的帖子: 字符串 java 
2014-04-10 17:53
chenwei435
Rank: 10Rank: 10Rank: 10
等 级:青峰侠
威 望:2
帖 子:322
专家分:1611
注 册:2010-11-28
收藏
得分:0 
已经实现
程序代码:
void splitdou(string s,vector<string>& ret)  
{  
    size_t last = 0;
    size_t index=s.find_first_of(',',last);
    while (index!=std::string::npos)
    {
        ret.push_back(s.substr(last,index-last));
        last=index+1;
        index=s.find_first_of(',',last);
    }
    if (index-last>0)
    {
        ret.push_back(s.substr(last,index-last));
    }
}

主程序代码
程序代码:
// slpitdou.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "string"
#include "iostream"
#include <vector>
using namespace std;

int main(int argc, char* argv[])
{
    //printf("Hello World!\n");
    string st("i am, a singer,you, are, not,he is.");
    vector<string> str;
    string del(",");
    splitdou(st,str);
    for(int i=0;i<str.size();i++)
    cout<<str[i]<<endl;
    return 0;
}
2014-04-10 18:20
Andrew_Lee
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:3
帖 子:185
专家分:626
注 册:2014-3-21
收藏
得分:0 
比楼上稍微复杂些:
程序代码:
void splitdou(string s,vector<string>& ret)
{
    int pos;

    while(s.length() != 0)
    {
        pos=s.find_first_of(',',0);
        if(-1 == pos)
        {
            ret.push_back(s);
            s = s.erase(0,s.length());
        }   
        else if(0 == pos)
        {
            s = s.erase(0,pos+1);
        }
        else
        {
            string temp;
            temp.append(s,0,pos); 
            ret.push_back(temp);
            s = s.erase(0,pos+1);
        }
    }
}

2014-04-10 19:53
快速回复:写一个用逗号分割string的split函数
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.034653 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved