3

我需要将字符串拆分为标记并将第三个标记作为字符串返回。

我有以下代码:

    #include <iostream>
    #include <string>
    #include <cstring>
    #include <boost/tokenizer.hpp>
    #include <fstream>
    #include <sstream>

    using namespace std;

    main()
    {
           std::string line = "Data1|Data2|Data3|Data4|Data5"; 

           typedef boost::tokenizer<boost::char_separator<char> > tokenizer;

           boost::char_separator<char> sep("|");

           tokenizer tokens(line, sep);

           for (tokenizer::iterator tok_iter = tokens.begin();
                    tok_iter != tokens.end(); ++tok_iter)

           std::cout << *tok_iter << endl;
           std::cout << "\n";
      }

该代码很好地将字符串分成标记。现在我无法弄清楚如何将第三个标记保存为单独的字符串。

谢谢!

4

1 回答 1

4

当您知道它是循环的第三次迭代时,只需存储到一个字符串。在std::distance的帮助下,您不需要任何额外的变量。

   string str;
   for (tokenizer::iterator tok_iter = tokens.begin();
      tok_iter != tokens.end(); ++tok_iter)
   {
      // if it's the 3rd token
      if (distance(tokens.begin(), tok_iter) == 2)
      {
         str = *tok_iter;
         // prints "Data3"
         cout << str << '\n';
      }
   }
于 2013-08-30T01:22:48.430 回答