C++ split分割字符串函数

将字符串绑定到输入流istringstream,而后使用getline的第三个参数,自定义使用什么符号进行分割就能够了。ios

#include <iostream>
#include <sstream>
#include <string>
#include <vector>
using namespace std;
void split(const string& s,vector<int>& sv,const char flag = ' ') {
    sv.clear();
    istringstream iss(s);
    string temp;

    while (getline(iss, temp, flag)) {
        sv.push_back(stoi(temp));
    }
    return;
}

int main() {
    string s("123:456:7");
    vector<int> sv;
    split(s, sv, ':');
    for (const auto& s : sv) {
        cout << s << endl;
    }
    system("pause");
    return 0;
}

 二、使用strtok函数。数组

       strtok()用来将字符串分割成一个个片断。参数s指向欲分割的字符串,参数delim则为分割字符串中包含的全部字符。当strtok()在参数s的字符串中发现参数delim中包含的分割字符时,则会将该字符改成\0 字符。在第一次调用时,strtok()必需给予参数s字符串,日后的调用则将参数s设置成NULL。每次调用成功则返回指向被分割出片断的指针函数

#include<iostream>
#include<cstring>
using namespace std;
int main()
{
    char sentence[]="This is a sentence with 7 tokens";
    cout << "The string to be tokenized is:\n" << sentence << "\n\nThe tokens are:\n\n";
    char *tokenPtr=strtok(sentence," ");//sentence必须是一个char数组,不能是定义成指针形式
    while(tokenPtr!=NULL) {
        cout<<tokenPtr<<'\n';
        tokenPtr=strtok(NULL," ");
    }
    //cout << "After strtok,sentence=" << tokenPtr<<endl;
    return 0;
}//对于string s;//char tar[10000];//strcpy(tar,s.c_str());
相关文章
相关标签/搜索