web-dev-qa-db-ja.com

C ++で文字列を分割する組み込みの方法はありますか?

よくありますか?文字列とはstd :: stringを意味します

19
jimi hendrix

これが私が使っている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);
    }
}
18
heeen

C++で文字列を分割する組み込みの方法はありませんが、 boost は、文字列を含むあらゆる種類の文字列操作を実行するための string algo ライブラリを提供します 分割

11
Martin Cote

うん、stringstream。

std::istringstream oss(std::string("This is a test string"));
std::string Word;
while(oss >> Word) {
    std::cout << "[" << Word << "] ";
}
10
MSalters

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;
7
strager
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);
}
3
Igor Oks

答えはいいえだ。ライブラリ関数の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()メソッドを見て、フィルターを作成することもできます。

1
dirkgently

なんてこった...これが私のバージョンです...

注:( "XZaaaXZ"、 "XZ")で分割すると、3つの文字列が得られます。これらの文字列のうち2つは空になり、TheIncludeEmptyStringsがfalseの場合、しない theStringVectorに追加されます。

区切り文字はnotセット内の任意の要素ですが、その正確な文字列に一致します。

 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;
}
0
Mr.Ree

これを行う一般的な方法はありません。

boost :: tokenizer 、そのヘッダーのみで使いやすい方が好きです。

0
Marco Kinski