18

C++ で同様の関数を探していますstring.split(delimiter)。指定された区切り文字で切り取られた文字列の配列を返します。

http://docs.oracle.com/javase/6/docs/api/java/lang/String.html#split(java.lang.String)

4

1 に答える 1

4

strtok を使用できます。 http://www.cplusplus.com/reference/cstring/strtok/

#include <string>
#include <vector>
#include <string.h>
#include <stdio.h>
std::vector<std::string> split(std::string str,std::string sep){
    char* cstr=const_cast<char*>(str.c_str());
    char* current;
    std::vector<std::string> arr;
    current=strtok(cstr,sep.c_str());
    while(current!=NULL){
        arr.push_back(current);
        current=strtok(NULL,sep.c_str());
    }
    return arr;
}
int main(){
    std::vector<std::string> arr;
    arr=split("This--is--split","--");
    for(size_t i=0;i<arr.size();i++)
        printf("%s\n",arr[i].c_str());
    return 0;
}
于 2013-04-29T19:06:30.633 に答える