码迷,mamicode.com
首页 > 编程语言 > 详细

C++之字符串分割函数

时间:2015-05-04 11:25:54      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

 

//c++之字符串分割:

std::string str_buf = "hello/world";
std::vector<std::string> str_arr;
split(str_buf, "/", str_arr);

for(std::vector<std::string>::iterator it=str_arr.begin();
    it != str_arr.end(); it++){
        std::cout << "std::string is " << *it << std::endl;
    }   


//取vector的最后一个元素:
std::string tmp = str_arr[str_arr.size()-1];

 

C++之字符串分割函数

标签:

原文地址:http://www.cnblogs.com/chris-cp/p/4475429.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!