使用单个分隔符拆分字符串

时间:2012-10-28 20:45:09

标签: c++

  

可能重复:
  Splitting a string in C++

我正在尝试将带有分隔符的单个字符串对象拆分为单独的字符串,然后输出单个字符串。

例如输入字符串是firstname,lastname-age-occupation-telephone

' - '字符是分隔符,我需要使用字符串类函数单独输出它们。

最好的方法是什么?我很难理解。发现。 substr和类似的函数。

谢谢!

2 个答案:

答案 0 :(得分:2)

我认为字符串流和getline是易于阅读的代码:

#include <string>
#include <sstream>
#include <iostream>

std::string s = "firstname,lastname-age-occupation-telephone";

std::istringstream iss(s);

for (std::string item; std::getline(iss, item, '-'); )
{
    std::cout << "Found token: " << item << std::endl;
}

这里仅使用string成员函数:

for (std::string::size_type pos, cur = 0;
     (pos = s.find('-', cur)) != s.npos || cur != s.npos; cur = pos)
{
    std::cout << "Found token: " << s.substr(cur, pos - cur) << std::endl;

    if (pos != s.npos) ++pos;  // gobble up the delimiter
}

答案 1 :(得分:0)

我会做这样的事情

do
{        
    std::string::size_type posEnd = myString.find(delim);
    //your first token is [0, posEnd). Do whatever you want with it.
    //e.g. if you want to get it as a string, use
    //myString.substr(0, posEnd - pos);
    myString = substr(posEnd);
}while(posEnd != std::string::npos);