由于我在文档中找不到任何关于此的内容,我想我在这里问它。我有以下程序(C++ 11):
#include <iostream>
#include <boost/algorithm/string.hpp>
using namespace std;
using namespace boost;
int main () {
string tmp = " #tag #tag1#tag2 #tag3 ####tag4 ";
list<iterator_range<string::iterator> > matches;
split( matches, tmp, is_any_of("\t #"), token_compress_on );
for( auto match: matches ) {
cout << "'" << match << "'\n";
}
}
输出是:
''
'tag'
'tag1'
'tag2'
'tag3'
'tag4'
''
我原以为该token_compress_on
选项会删除所有空标记。例如,解决方案是使用boost::trim_if
. 不过我想知道这是否是 boost::split 的期望行为,为什么会这样?
(g++ 4.6.3,提升 1.48)