栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

2021-11-08

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

2021-11-08

这里写自定义目录标题
  • C++分割字符串std::string
    • 代码如下

C++分割字符串std::string

将字符串str按照分割的字符串s,进行分割,将结果以std::vectorstd::string形式返回。
如str=“110.22,120.22,130.22,140.22”
s=","
std::vectorstd::stringret=[“110.22”,“120.22”,“130.22”,“140.22”];

代码如下
#include 
#include 
#include 

std::vector splitString(const std::string& str, const std::string& s)
{
	std::vector ret;
	int sLen = s.size();
	int index = 0;
	int endIndex = str.find(s, index);
	while(endIndex > 0)
	{
		if(endIndex > index)
		{
			std::string temp = str.substr(index, endIndex-index);
			ret.push_back(temp);
			index = endIndex + sLen;
		}
		endIndex = str.find(s, index);
	}
	if(index < str.size() )
	{
		std::string temp = str.substr(index, str.size() - index);
		ret.push_back(temp);
	}
	return ret;
}
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/443841.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号