文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

C++怎么实现字符串切割

2023-07-02 14:48

关注

本篇内容介绍了“C++怎么实现字符串切割”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

字符串切割的两种方法

字符串切割的使用频率还是挺高的,string本身没有提供切割的方法,但可以使用stl提供的封装进行实现或者通过c函数strtok()函数实现。

1、通过stl实现

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

1、find函数

2、substr函数

代码如下:

std::vector<std::string> splitWithStl(const std::string &str,const std::string &pattern){    std::vector<std::string> resVec;    if ("" == str)    {        return resVec;    }    //方便截取最后一段数据    std::string strs = str + pattern;        size_t pos = strs.find(pattern);    size_t size = strs.size();    while (pos != std::string::npos)    {        std::string x = strs.substr(0,pos);        resVec.push_back(x);        strs = strs.substr(pos+1,size);        pos = strs.find(pattern);    }        return resVec;}

2、通过使用strtok()函数实现

代码如下:

std::vector<std::string> split(const std::string &str,const std::string &pattern){    //const char* convert to char*    char * strc = new char[strlen(str.c_str())+1];    strcpy(strc, str.c_str());    std::vector<std::string> resultVec;    char* tmpStr = strtok(strc, pattern.c_str());    while (tmpStr != NULL)    {        resultVec.push_back(std::string(tmpStr));        tmpStr = strtok(NULL, pattern.c_str());    }        delete[] strc;        return resultVec;};

字符串分割&类型转换(string->double)

【自己备用】

代码如下(示例):

#include<sstring>//头文件#include<iostream>using namespace std;int main(){    string line;     ifstream is("2011_6.txt");    while(is>>line)    {        cout<<line<<endl;        istringstream   is1(line.substr(line.find("C")+2,line.find(",")-2));   //创建一个istringstream对象,目的是将()中的字符串转换为数字型        // cout<<line.find("C")<<"    "<<line.find(",")<<endl;        double o_x, o_y, r;        is1>>o_x;         //将转换后的数字输入o_x        cout<<o_x<<endl;        line.erase(line.find("C"),line.find(",")+1);    //将字符串中已经用过的部分擦除,为后面的字符串处理提供便利        cout<<line<<endl;        //cout<<line.find(",")<<endl;        istringstream is2(line.substr(0,line.find(",")));        is2>>o_y;        cout<<o_y<<endl;        line.erase(0,line.find(",")+1);        cout<<line<<endl;        istringstream is3(line.substr(0,line.find(";")));        is3>>r;        cout<<r<<endl;        line.erase(0,line.find(";")+1);        cout<<line<<endl;    }}

“C++怎么实现字符串切割”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯