4

我正在尝试使用字符串在 C++ 中拆分带有 2 个定界符“+”和“-”的字符串,找到一个定界符...

谁能给我转转...

使用

str.find(分隔符)

例子 :

a+b-c+d

所需输出:a b c d

提前致谢

4

3 回答 3

14

使用std::string::substrstd::string::find

    std::vector<std::string> v ; //Use vector to add the words

    std::size_t prev_pos = 0, pos;
    while ((pos = str.find_first_of("+-", prev_pos)) != std::string::npos)
    {
        if (pos > prev_pos)
            v.push_back(str.substr(prev_pos, pos-prev_pos));
        prev_pos= pos+1;
    }
    if (prev_pos< str.length())
        v.push_back(str.substr(prev_pos, std::string::npos));

或者如果你使用boost它会容易得多

#include <boost/algorithm/string.hpp>

std::vector<std::string> v;
boost::split(v, line, boost::is_any_of("+-"));
于 2013-10-05T20:49:52.227 回答
0

使用函数“char* strtok(c​​har* src, const char* delimiters)” http://en.cppreference.com/w/cpp/string/byte/strtok

char* s = "a+b-c+d";
char* p = strtok(s, "+-");  
while (p != NULL)
{
  // do something with p
  p = strtok (NULL, "+-");
}
于 2013-10-05T20:48:17.837 回答
0

您也可以对变量分隔符执行此操作

void main void()
{
   char stringToUpdate[100] , char delimeters[4];

/*
write code to assign strings and delimeter
*/
        replaceDelimeters(stringToUpdate, delimeters, ' ');
}   

void replaceDelimeters(char* myString, char* delimeters, char repChar)
{   
for (int i = 0; delimeters[i] != '\0'; i++)
    {
        for(int j=0; stringtoUpdate[j] != '\0'; j++)
        {
           if(stringtoUpdate[j] == delimeters[i])
           {
                stringtoUpdate[j] = repChar;
           }
        }
    }
}
于 2013-10-05T20:55:28.400 回答