C++ Split string into vector<string> by space

简介:

在C++中,我们有时候需要拆分字符串,比如字符串string str = "dog cat cat dog"想以空格区分拆成四个单词,Java中实在太方便了,直接String[] v = str.split(" ");就搞定了,而c++中没有这么方便的实现,但也有很多的方法能实现这个功能,下面列出五种常用的实现的方法,请根据需要选择,个人觉得前三种使用起来比较方便,参见代码如下:

#include <vector>
#include <iostream>
#include <string>
#include <sstream>
string str = "dog cat cat dog";
istringstream in(str);
vector<string> v;
// Method 1
string t;
while (in >> t) {
v.push_back(t);
    }
// Method 2
// #include <iterator>
copy(istream_iterator<string>(in), istream_iterator<string>(), back_inserter(v));
// Method 3
    string t;
    while (getline(in, t, ' ')) {
        v.push_back(t);
    }
// Method 4
    string str2 = str;
    while (str2.find(" ") != string::npos) {
        int found = str2.find(" ");
        v.push_back(str2.substr(0, found));
        str2 = str2.substr(found + 1);
    }    
    v.push_back(str2);
    
// Method 5 // #include <stdio.h> // #include <stdlib.h> // #include <string.h> char *dup = strdup(str.c_str()); char *token = strtok(dup, " "); while (token != NULL) { v.push_back(string(token)); token = strtok(NULL, " "); } free(dup);

本文转自博客园Grandyang的博客,原文链接:C++ Split string into vector by space,如需转载请自行联系原博主。

相关文章
|
2月前
|
C++ 容器
|
2月前
|
存储 C++ 索引
【C++打怪之路Lv9】-- vector
【C++打怪之路Lv9】-- vector
23 1
|
2月前
|
存储 安全 C++
【C++打怪之路Lv8】-- string类
【C++打怪之路Lv8】-- string类
22 1
|
2月前
|
编译器 C++
【C++】—— vector模拟实现
【C++】—— vector模拟实现
|
2月前
|
C++ 容器
|
2月前
|
C++ 容器
|
2月前
|
算法 C++ 容器
C++之打造my vector篇(下)
C++之打造my vector篇(下)
28 0
|
2月前
|
存储 编译器 C++
C++之打造my vector篇(上)
C++之打造my vector篇(上)
29 0
|
2月前
|
C语言 C++
深度剖析C++string(中)
深度剖析C++string(中)
50 0
|
2月前
|
存储 编译器 程序员
深度剖析C++string(上篇)(2)
深度剖析C++string(上篇)(2)
36 0