我正在使用 boost::split 来解析数据文件。数据文件包含如下行。
数据.txt
1:1~15 ASTKGPSVFPLAPSS SVFPLAPSS -12.6 98.3
项目之间的空白是制表符。我必须拆分上述行的代码如下。
std::string buf;
/*Assign the line from the file to buf*/
std::vector<std::string> dataLine;
boost::split( dataLine, buf , boost::is_any_of("\t "), boost::token_compress_on); //Split data line
cout << dataLine.size() << endl;
对于上面的代码行,我应该打印出 5,但我得到 6。我试图通读文档,这个解决方案似乎应该做我想要的,显然我错过了一些东西。谢谢!
编辑:在 dataLine 上按如下方式运行 forloop,您会得到以下结果。
cout << "****" << endl;
for(int i = 0 ; i < dataLine.size() ; i ++) cout << dataLine[i] << endl;
cout << "****" << endl;
****
1:1~15
ASTKGPSVFPLAPSS
SVFPLAPSS
-12.6
98.3
****