for (std::string::const_iterator it = src.begin(); it != src.end(); it++)
{
if (sep.find(*it) != std::string::npos)
{
if (s.length())
{
dst.push_back(s);
}
s.clear();
}
else
{
s += *it;
}
}
if (s.length())
{
dst.push_back(s);
}
}
例如:src = abcdefgh 碰到cf 字符串中的任意字符就切割 sep = cf 得到结果 dst = ‘ab‘, ‘de‘ , ‘gh‘
原文:http://blog.51cto.com/wenxuehui/2112701