使用2个分隔符'+'&分隔C ++中的字符串“ - ”

时间:2013-10-05 20:42:25

标签: c++ c string find delimiter

我正在尝试在C ++中拆分带有2个分隔符'+'和' - '的字符串 使用字符串查找分隔符...

任何人都可以给我一个回头......

使用

  

str.find(定界符)

示例:

A + B-C + d

需要输出: 一个 b C d

提前致谢

3 个答案:

答案 0 :(得分: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("+-"));

答案 1 :(得分:0)

使用函数“char * strtok(char * 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, "+-");
}

答案 2 :(得分: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;
           }
        }
    }
}