C++常用字符串分割方法

From:http://www.jb51.net/article/55954.htm



1. 用strtok函数进行字符串分割


原型:       char *strtok(char *str, const char *delim);
功能:       分解字符串为一组字符串。
参数说明:str为要分解的字符串,delim为分隔符字符串。
返回值:    从str开头开始的一个个被分割的串。当没有被分割的串时则返回NULL。
其它:       strtok函数线程不安全,可以使用strtok_r替代。

代码示例:

//借助strtok实现split
#include <string.h>
#include <stdio.h>int main()
{char chArry[] = "one two   three,four * five";const char *d = " ,*";char *p;p = strtok(s,d);while(p != NULL){printf("%s\n", p);p=strtok(NULL, d);}return 0;
}



2. 用STL进行字符串的分割


涉及到string类的两个函数find和substr:

1、find函数
        原型:       size_t find ( const string& str, size_t pos = 0 ) const;
        功能:       查找子字符串第一次出现的位置。
        参数说明:str为子字符串,pos为初始查找位置。
        返回值:    找到的话返回第一次出现的位置,否则返回string::npos
2、substr函数
        原型:       string substr ( size_t pos = 0, size_t n = npos ) const;
        功能:       获得子字符串。
        参数说明:pos为起始位置(默认为0),n为结束位置(默认为npos)
        返回值:    子字符串


示例代码:

#include <iostream>
#include <string>
#include <vector>
//字符串分割函数
std::vector<std::string> split(std::string str,std::string pattern)
{
std::string::size_type pos;
std::vector<std::string> result;
str+=pattern;//扩展字符串以方便操作
int size=str.size();
for(int i=0; i<size; i++)
{
pos=str.find(pattern,i);
if(pos<size)
{
std::string s=str.substr(i,pos-i);
result.push_back(s);
i=pos+pattern.size()-1;
}
}
return result;
}
int main()
{
std::string str;
std::cout<<"Please input str:"<<std::endl;
//std::cin>>str;
getline(std::cin,str);
std::string pattern;
std::cout<<"Please input pattern:"<<std::endl;
//std::cin>>pattern;
getline(std::cin,pattern);//用于获取含空格的字符串
std::vector<std::string> result=split(str,pattern);
std::cout<<"The result:"<<std::endl;
for(int i=0; i<result.size(); i++)
{
std::cout<<result[i]<<std::endl;
}
std::cin.get();
std::cin.get();
return 0;
}


find_first_not_of

#include<string>
#include<vector>
#include<iostream>
using namespace std;void Tokenize(const string& str, vector<string>& tokens, const string& delimiters)
{// Skip delimiters at beginning.string::size_type lastPos = str.find_first_not_of(delimiters, 0);// Find first "non-delimiter".string::size_type pos = str.find_first_of(delimiters, lastPos);while (string::npos != pos || string::npos != lastPos){// Found a token, add it to the vector.tokens.push_back(str.substr(lastPos, pos - lastPos));// Skip delimiters.  Note the "not_of"lastPos = str.find_first_not_of(delimiters, pos);// Find next "non-delimiter"pos = str.find_first_of(delimiters, lastPos);}
}
int main(int argc, char *argv[])
{string str("====aaa==bbb=ccc=ddd====");vector<string>tokens;Tokenize(str, tokens, "=");for( int i = 0; i < tokens.size() ; i++ ){cout << tokens[i] << endl;}return 0;
}



3. 用Boost进行字符串的分割


用boost库的正则表达式实现字符串分割

示例代码:

#include <iostream>
#include <cassert>
#include <vector>
#include <string>
#include "boost/regex.hpp"std::vector<std::string> split(std::string str,std::string s)
{boost::regex reg(s.c_str());std::vector<std::string> vec;boost::sregex_token_iterator it(str.begin(),str.end(),reg,-1);boost::sregex_token_iterator end;while(it!=end){vec.push_back(*it++);}return vec;
}
int main()
{std::string str,s;str="sss/ddd/ggg/hh";s="/";std::vector<std::string> vec=split(str,s);for(int i=0,size=vec.size();i<size;i++){std::cout<<vec[i]<<std::endl;}std::cin.get();std::cin.get();return 0;
}


boost里面有自带的split的函数,如果用boost的话,还是直接用split的好

示例代码:

#include <iostream>
#include <string>
#include <vector>
#include <boost/algorithm/string/classification.hpp>
#include <boost/algorithm/string/split.hpp>using namespace std;int main()
{string s = "sss/ddd,ggg";vector<string> vStr;boost::split( vStr, s, boost::is_any_of( ",/" ), boost::token_compress_on );for( vector<string>::iterator it = vStr.begin(); it != vStr.end(); ++ it )cout << *it << endl;return 0;
}





本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/496857.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C# 根据中文得到全拼

C#源码下载转载于:https://www.cnblogs.com/goldnet/archive/2008/04/25/1170420.html

软件系统架构~软件架构概念

1、系统的架构定义了它的静态结构、动态结构、外部可见行为、质量属性以及应该引导其设计和发展的原则&#xff1b; 2、系统的候选架构是有可能展现出系统所需要的外部可见行为和质量属性的架构。选择最佳方案则是架构师的职责所在&#xff1b; 3、架构元素时系统的组成部分&…

C++学习之路 | PTA乙级—— 1056 组合数的和 (15 分)(精简)

1056 组合数的和 (15 分) 给定 N 个非 0 的个位数字&#xff0c;用其中任意 2 个数字都可以组合成 1 个 2 位的数字。要求所有可能组合出来的 2 位数字的和。例如给定 2、5、8&#xff0c;则可以组合出&#xff1a;25、28、52、58、82、85&#xff0c;它们的和为330。 输入格式…

大话设计模式-策略模式与简单工厂模式

来源&#xff1a;http://blog.csdn.net/wulingmin21/article/details/6712684 策略模式定义了一系列的算法&#xff0c;并将每一个算法封装起来&#xff0c;而且使它们还可以相互替换。策略模式让算法独立于使用它的客户而独立变化。 例如&#xff1a; CashNormal、CashRebate…

任务太多?学着突破重围

任务太多&#xff1f;学着突破重围 周银辉不知算是我的一个缺点&#xff0c;还是大都这样&#xff1a;如果有10个任务一次性地推给我&#xff0c;我完成任务的效率会明显低于一个一个地指派任务。这里的任务&#xff0c;是…

全球知识图谱专家分布、研究流派(附学者名单)

来源&#xff1a; THU数据派概要&#xff1a;在维基百科的官方词条中&#xff1a;知识图谱是Google用于增强其搜索引擎功能的知识库。什么是知识图谱&#xff1f;在维基百科的官方词条中&#xff1a;知识图谱是Google用于增强其搜索引擎功能的知识库。本质上, 知识图谱旨在描述…

软件系统架构~思维导图

#原图 System.out.println("https://www.processon.com/view/link/6194f2740e3e7409b9c2f3df")

C++学习之路 | PTA乙级—— 1057 数零壹 (20 分)(精简)

1057 数零壹 (20 分) 给定一串长度不超过 10 ​5 ​​ 的字符串&#xff0c;本题要求你将其中所有英文字母的序号&#xff08;字母 a-z 对应序号 1-26&#xff0c;不分大小写&#xff09;相加&#xff0c;得到整数 N&#xff0c;然后再分析一下 N 的二进制表示中有多少 0、多少…

创建型、结构型、行为型模式(1)

来源&#xff1a;http://blog.csdn.net/wulingmin21/article/details/6753363 目的 创建型模式 Creational Pattern 结构型模式 Structural Patterns 行为型模式 Behavioral Pattern 概念 创建型模式&#xff0c;就是创建对象的模式&#xff0c;抽象了实例化的过程。…

干货|全球人工智能专利分布战情图

来源&#xff1a; 点滴科技资讯作者&#xff1a;许倩未来智能实验室是人工智能学家与科学院相关机构联合成立的人工智能&#xff0c;互联网和脑科学交叉研究机构。未来智能实验室的主要工作包括&#xff1a;建立AI智能系统智商评测体系&#xff0c;开展世界人工智能智商评测&am…

Finding Gems

N大就是厚道&#xff01;紧接着上一部&#xff0c;GPU Gems 2即将免费开放~http://news.developer.nvidia.com/2008/05/gpu-gems-2---on.html转载于:https://www.cnblogs.com/eygneph/archive/2008/05/13/1194635.html

tomcat高版本之URL解析异常解决

IllegalArgumentException 一、项目场景&#xff1a; 例如&#xff1a;由于Apache的tomcat的版本升级&#xff0c;遵循RFC 7230 and RFC 3986规范解析请求地址。同时添加了对于http头的验证请求。 导致报文存在导致特殊字符&#xff08;不在解析范围内的&#xff09;tomcat7…

C++学习之路 | PTA乙级—— 1058 选择题 (20 分)(精简)

1058 选择题 (20 分) 批改多选题是比较麻烦的事情&#xff0c;本题就请你写个程序帮助老师批改多选题&#xff0c;并且指出哪道题错的人最多。 输入格式&#xff1a; 输入在第一行给出两个正整数 N&#xff08;≤ 1000&#xff09;和 M&#xff08;≤ 100&#xff09;&#xf…

创建型、结构型、行为型模式(2)

来源&#xff1a;http://blog.csdn.net/wulingmin21/article/details/6757111 创建型模式 Singleton模式解决的是实体对象个数的问题。 除了Singleton之外&#xff0c;其他创建型模式解决的都是New所带来的耦合关系。 Factory Method&#xff0c;Abstract Factory&#xff0c;B…

大数据行业洞察:未来2-3年或迎数据时代的真正高潮

来源&#xff1a; DT数据侠 作者&#xff1a;中关村老李从2012年的“用户标签”到2014年的“用户画像”&#xff0c;从2015年的“大数据”到2017年的“人工智能”&#xff0c;大数据正在从神坛走向现实。“标签”到“画像”&#xff0c;代表着数据在数量和维度上&#xff0c;逐…

host头攻击漏洞

一个服务器上跑多个程序是非常常见的现象。 但是这样做后会有一个问题&#xff0c;那就是容易造成 Host 头攻击。host 头(host header或称主机头)攻击&#xff0c;非常常见。比如&#xff0c;在 jsp 中&#xff0c;我们通常可能存在类似下面的代码。 <script type"te…

地震

昨天下午2点半多&#xff0c;在家里刚开电脑&#xff0c;突然感到椅子左右轻微晃动&#xff0c;当时想是不是椅子坏了&#xff0c;后来又听到楼上有声音&#xff0c;想是不是整修楼面搞的。随着震动逐渐加大&#xff0c;意识到是地震&#xff0c;赶快喊妈妈姥姥躲卫生间&#x…

C++学习之路 | PTA乙级—— 1059 C语言竞赛 (20 分)(精简)

1059 C语言竞赛 (20 分) C 语言竞赛是浙江大学计算机学院主持的一个欢乐的竞赛。既然竞赛主旨是为了好玩&#xff0c;颁奖规则也就制定得很滑稽&#xff1a; 0、冠军将赢得一份“神秘大奖”&#xff08;比如很巨大的一本学生研究论文集……&#xff09;。 1、排名为素数的学生将…

5G时代到来,人工智能设备如何重塑TMT行业

来源&#xff1a;亿欧在近期召开的2018世界移动通信大会上&#xff0c;5G作为热点话题被高频提及&#xff0c;当前&#xff0c;5G技术已经取得突破进展&#xff0c;全球范围内已有运营商宣布2018年将投入商用。在这一背景下&#xff0c;5G与人工智能技术的结合将重塑众多产业&a…

c++ Oracle OCCI 编程

来源&#xff1a;http://blog.csdn.net/gumingyaotangwei/article/details/7337893 OCCI数据库Oracle编程步骤 1&#xff0e; 配置环境 &#xff08;1&#xff09; Occi访问数据库需要occi.h头文件&#xff0c;此文件在oracle安装目录下&#xff0c;必须有oracle库的支持。安装…