C/C++ 字符串分割
Posted cpp_learners
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C/C++ 字符串分割相关的知识,希望对你有一定的参考价值。
这篇博客是代码记录,在做项目时有需要将一个字符串按一个字符去分割成多个字符串,然后自己写了一个函数去实现,可行,现在把这个函数记录下来。
实现方法和网上其他介绍类似!
需要添加头文件:
#include <stdio.h>
#include <vector>
#include <string>
#include <string.h>
代码:
/**********************************************************
*
* 功能:
* 将一个字符串按照特定的一个字符去分割成多个子字符串
*
* 参数:
* str:待分割的字符串
* c:分隔符,他是一个字符串
*
* 返回值:
* 返回一个vecotr容器对象,里面存储分割出来的字符串(如果字符串是空,或者字符串没有分隔符,则返回空的vector容器对象)
*
**********************************************************/
std::vector<std::string> _split(std::string str, std::string c)
std::vector<std::string> vec;
// 合法性检查
if (str.empty() || c.empty())
return vec;
// 当在字符串中没有检查到分隔符时,返回空的vector容器
int ret = str.find(c, 0);
if (ret == -1)
return vec;
char *p;
// 区分此函数是在Windows环境调用还是Linux环境调用
#if defined (_WIN64) || defined (WIN32) || defined (_WIN32)
//printf("---Windows---\\n");
char *buf;
p = strtok_s((char *)str.c_str(), c.c_str(), &buf); // 获得第一个分割出来的字符串
while (p)
vec.push_back(p); // 插入容器中
p = strtok_s(NULL, c.c_str(), &buf); // 获取下一个分割出来的字符串
#else
//printf("---Linux---\\n");
char *buf;
p = strtok((char *)str.c_str(), c.c_str()); // 获得第一个分割出来的字符串
while (p)
vec.push_back(p); // 插入容器中
p = strtok(NULL, c.c_str()); // 获取下一个分割出来的字符串
#endif
return vec;
测试:
int main(void)
std::vector<std::string> vec = _split("中文|English|汉语|粤语|abc", "|");
for (int i = 0; i < vec.size(); i++)
printf("%s, ", vec.at(i).c_str());
return 0;
运行截图:
没问题,完毕!
总结:
主要是因为在Linux系统做项目时,需要用到,然后就自己写了一个;后来想,如果在Windows系统中要使用呢,于是就将其改成了这样的一个版本,供自己以后在Windows和Linux中使用!
有需要的朋友也可以拿取!
以上是关于C/C++ 字符串分割的主要内容,如果未能解决你的问题,请参考以下文章
pandaspandas.Series.str.split()---字符串分割