split函数。
标准串的:
/********************************************
the tokenize function for std::string
*********************************************/
#include <string>
#include <vector>
#include <iostream>
using namespace std;
typedef basic_string<char>::size_type S_T;
static const S_T npos = -1;
////trim指示是否保留空串,默认为保留。
vector<string> tokenize(const string& src, string tok,
bool trim=false, string null_subst="")
{
if( src.empty() || tok.empty() ) throw "tokenize: empty
string\0";
vector<string> v;
S_T pre_index = 0, index = 0, len = 0;
while( (index = src.find_first_of(tok, pre_index)) !=
npos )
{
if( (len = index-pre_index)!=0 )
v.push_back(src.substr(pre_index, len));
else if(trim==false)
v.push_back(null_subst);
pre_index = index+1;
}
string endstr = src.substr(pre_index);
if( trim==false ) v.push_back( endstr.empty()?
null_subst:endstr );
else if( !endstr.empty() ) v.push_back(endstr);
return v;
}
////使用一个完整的串delimit(而不是其中的
某个字符)来分割src串,没有trim选项,即严格分割。
vector<string> split(const string& src, string delimit,
string null_subst="")
{
if( src.empty() || delimit.empty() ) throw "split:
empty string\0";
vector<string> v;
S_T deli_len = delimit.size();
long index = npos, last_search_position = 0;
while( (index=src.find(delimit,
last_search_position))!=npos )
{
if(index==last_search_position)
v.push_back(null_subst);
else
v.push_back( src.substr(last_search_position, index-
last_search_position) );
last_search_position = index + deli_len;
}
string last_one = src.substr(last_search_position);
v.push_back( last_one.empty()? null_subst:last_one );
return v;
}
//test
int main(void)
{
string src = ",ab,cde;,,fg,," ;
string tok = ",;" ;
vector<string> v1 = tokenize(src, tok ,true);
vector<string> v2 = tokenize(src, tok ,false,
"<null>");
cout<<"-------------v1:"<<endl;
for(int i=0; i<v1.size();i++)
{
cout<<v1[i].c_str()<<endl;
}
cout<<"-------------v2:"<<endl;
for(int j=0; j<v2.size();j++)
{
cout<<v2[j].c_str()<<endl;
}
try{
string s = "######123#4###56########789###";
string del = "";//"###";
vector<string> v3 = split(s, del, "<null>");
cout<<"-------------v3:"<<endl;
for(int k=0; k<v3.size();k++)
{
cout<<v3[k].c_str()<<endl;
}
}
catch (char *s) {
cout<<s<<endl;
}
return 0;
}
分享到:
相关推荐
根据提供的标题、描述和标签,本篇文章将围绕“C++标准库”这一核心主题进行深入探讨,介绍C++标准库的基础概念、主要组成部分及其在实际编程中的应用。 ### C++标准库简介 C++标准库(Standard Library)是C++...
这里我们使用了标准库中的`vector`容器来存储分割后的结果。 2. **初始化变量**:首先定义了一些辅助变量,如`start`、`end`和`len`,分别表示子串的起始位置、结束位置和字符串长度。 3. **遍历字符串**:使用一...
在处理字符串时,虽然C++标准库(STL)提供了许多内置的工具,如`std::string`类,但有时我们需要更加定制化的功能。这个"纯C++ 字符串处理函数大全源码"正是为了满足这种需求而设计的,它包含了作者自定义封装的一...
C++标准库并没有内置的`split`函数,但我们可以自定义一个,例如使用`std::stringstream`和`std::getline`来实现: ```cpp #include #include std::vector<std::string> split(const std::string &str, const ...
在C++中,实现字符串分割函数split是一项常见的任务,然而,C++标准库中并没有提供这样一个函数,本文将详细介绍如何在C++中实现字符串分割函数split,并提供了一个完整的示例代码。 首先,需要了解的是,C++标准库...
在描述中提到,这个函数是"标准C语言写的",意味着它遵循了C语言的规范,不依赖于特定的库或扩展。同时,描述中还强调了它的效率和动态生成长度的特点,这可能意味着该函数在处理不同大小的字符串时能有效管理内存,...
C++标准程序库提供了一系列字符串处理函数,如`find`、`replace`、`split`等,方便程序员进行字符串的创建、修改和查询。 ##### 6. 异常处理 C++标准程序库还支持异常处理机制,这使得程序能够在遇到运行时错误时...
2. **字符串分割**: 在 C/C++ 标准库中,没有内建的函数可以直接根据分隔符分割字符串。但在 Arduino 中,我们可以通过遍历字符串,使用 `indexOf()` 和 `substring()` 方法来实现这个功能。`indexOf()` 找到分隔符...
在C++标准库中,`std::string`类提供了`substr()`函数,用于从一个字符串中截取子字符串。但是,这个库函数可能不够灵活或高效,因此,自定义的字符串截取函数可能会提供更多的选项,如指定截取起始位置、结束位置...
在C++标准库中,虽然没有直接提供类似Python的`split()`函数,但我们可以利用其他工具和方法来实现类似的功能。本文将深入探讨如何在C++中实现字符串分割,并以提供的`split.cpp`和`split.h`文件为例进行讲解。 ...
C++ STL(Standard Template Library,标准模板库)是C++编程语言中不可或缺的一部分,它提供了一组高效且灵活的容器、算法和迭代器,极大地提高了程序员的生产力。STL的核心概念包括容器、迭代器、算法和函数对象。...
《标准模板库自修教程与参考手册:STL进行C++编程(第二版)》是一部深入探讨C++标准模板库(STL)的权威指南,适用于C++开发者、学习者和爱好者。STL是C++编程中不可或缺的一部分,它提供了一组高效、可重用的容器...
`std::string` 是 C++ 标准库中的一个类,用于处理字符串。它提供了一种更安全、更方便的方式来操作字符串数据,相比于 C 风格的字符数组,`std::string` 提供了更多的内置功能,可以有效地避免许多常见的编程错误。...
描述中提到的“用C++写”的字符串分割函数,暗示了我们不是在讨论标准库(如`std::string`的`std::getline`或`std::stringstream`)中的方法,而是在创建一个定制的解决方案,可能是为了适应特定的性能需求或与MFC的...
C++标准库提供了丰富的工具来处理字符串,但有时我们还需要更高效或特定功能的库来增强我们的代码。"C++字符串处理类库及范例"就是这样一个资源,它专门针对字符串操作进行了优化,提供了强大的功能,包括字符串的...
第10章 Visual C++ 2010 MFC动态函数链接库 434 10.1 动态函数链接库简介 434 10.1.1 什么是动态函数链接库 434 10.1.2 动态函数链接库的优点 435 10.1.3 动态函数链接库的起源 436 10.1.4 动态函数链接库的原理 436...
ifstream是C++标准库中的输入流类,用于读取文件。下面是一个简单的示例代码: ```cpp #include #include #include int main() { std::ifstream file("D:\\test.csv"); std::string value; while (file.good...
在C++编程中,`std::string`通常用来替代传统的C风格字符串(`char*`),因为前者提供了更丰富的接口和更安全的内存管理。 1. **字符串的基本操作**: - **构造与赋值**:可以通过字面量、其他字符串或字符数组来...