19

有吗?通过字符串,我的意思是 std::string

4

10 回答 10

17

这是我使用的 perl 风格的拆分函数:

void split(const string& str, const string& delimiters , vector<string>& tokens)
{
    // Skip delimiters at beginning.
    string::size_type lastPos = str.find_first_not_of(delimiters, 0);
    // Find first "non-delimiter".
    string::size_type pos     = str.find_first_of(delimiters, lastPos);

    while (string::npos != pos || string::npos != lastPos)
    {
        // Found a token, add it to the vector.
        tokens.push_back(str.substr(lastPos, pos - lastPos));
        // Skip delimiters.  Note the "not_of"
        lastPos = str.find_first_not_of(delimiters, pos);
        // Find next "non-delimiter"
        pos = str.find_first_of(delimiters, lastPos);
    }
}
于 2009-03-01T16:21:48.763 回答
11

在 C++ 中没有内置的分割字符串的方法,但是boost提供了字符串算法库来进行各种字符串操作,包括字符串分割

于 2009-03-01T16:08:37.937 回答
10

是的,字符串流。

std::istringstream oss(std::string("This is a test string"));
std::string word;
while(oss >> word) {
    std::cout << "[" << word << "] ";
}
于 2009-03-02T09:44:46.823 回答
7

STL 字符串

你可以使用字符串迭代器来做你的脏活。

std::string str = "hello world";

std::string::const_iterator pos = std::find(string.begin(), string.end(), ' '); // Split at ' '.

std::string left(str.begin(), pos);
std::string right(pos + 1, str.end());

// Echoes "hello|world".
std::cout << left << "|" << right << std::endl;
于 2009-03-01T15:57:03.537 回答
3
void split(string StringToSplit, string Separators)
{
    size_t EndPart1 = StringToSplit.find_first_of(Separators)
    string Part1 = StringToSplit.substr(0, EndPart1);
    string Part2 = StringToSplit.substr(EndPart1 + 1);
}
于 2009-03-01T16:04:54.123 回答
1

答案是不。您必须使用其中一个库函数将它们分解。

我用的东西:

std::vector<std::string> parse(std::string l, char delim) 
{
    std::replace(l.begin(), l.end(), delim, ' ');
    std::istringstream stm(l);
    std::vector<std::string> tokens;
    for (;;) {
        std::string word;
        if (!(stm >> word)) break;
        tokens.push_back(word);
    }
    return tokens;
}

你也可以看看basic_streambuf<T>::underflow()方法,写一个过滤器。

于 2009-03-01T15:55:04.367 回答
0

什么鬼……这是我的版本……

注意:拆分 ("XZaaaXZ", "XZ") 将为您提供 3 个字符串。其中 2 个字符串将为空,如果 theIncludeEmptyStrings 为 false ,则不会添加到 theStringVector。

Delimiter不是集合中的任何元素,而是与该确切字符串匹配。

 inline void
StringSplit( vector<string> * theStringVector,  /* Altered/returned value */
             const  string  & theString,
             const  string  & theDelimiter,
             bool             theIncludeEmptyStrings = false )
{
  UASSERT( theStringVector, !=, (vector<string> *) NULL );
  UASSERT( theDelimiter.size(), >, 0 );

  size_t  start = 0, end = 0, length = 0;

  while ( end != string::npos )
  {
    end = theString.find( theDelimiter, start );

      // If at end, use length=maxLength.  Else use length=end-start.
    length = (end == string::npos) ? string::npos : end - start;

    if (    theIncludeEmptyStrings
         || (   ( length > 0 ) /* At end, end == length == string::npos */
             && ( start  < theString.size() ) ) )
      theStringVector -> push_back( theString.substr( start, length ) );

      // If at end, use start=maxSize.  Else use start=end+delimiter.
    start = (   ( end > (string::npos - theDelimiter.size()) )
              ?  string::npos  :  end + theDelimiter.size()     );
  }
}


inline vector<string>
StringSplit( const  string  & theString,
             const  string  & theDelimiter,
             bool             theIncludeEmptyStrings = false )
{
  vector<string> v;
  StringSplit( & v, theString, theDelimiter, theIncludeEmptyStrings );
  return v;
}
于 2009-03-01T21:49:13.937 回答
0

没有常见的方法来做到这一点。

我更喜欢boost::tokenizer,它只有标题并且易于使用。

于 2010-10-20T08:58:07.077 回答
-2

一个相当简单的方法是使用 std::string 的 c_str() 方法获取 C 风格的字符数组,然后使用 strtok() 对字符串进行标记。不像这里列出的其他一些解决方案那样雄辩,但它很容易并且有效。

于 2009-03-02T00:37:40.273 回答
-2

C 字符串

\0只需在要拆分的位置插入一个。这与标准 C 函数一样内置。

此函数在第一次出现分隔符时拆分char,返回第二个字符串。

char *split_string(char *str, char separator) {
    char *second = strchr(str, separator);
    if(second == NULL)
        return NULL;

    *second = '\0';
    ++second;
    return second;
}
于 2009-03-01T15:54:36.880 回答