0

我在这方面苦苦挣扎,我已经到了没有取得任何进展的地步,是时候寻求帮助了。我对 boost 库的熟悉程度仅略好于肤浅。我正在尝试通过一个相当大的字符串进行逐行扫描。事实上,它是读入 std::string 对象的文件的全部内容(文件不会那么大,它是命令行程序的输出)。

这个程序的输出 pnputil 是重复的。我正在寻找某些模式以找到我想要的“oemNNN.inf”文件。本质上,我的算法是找到第一个“oemNNN.inf”,搜索该文件的识别特征。如果这不是我想要的,请继续下一个。

在代码中,它类似于:

std::string filesContents;
std::string::size_type index(filesContents.find_first_of("oem"));
std::string::iterator start(filesContents.begin() + index);
boost::match_results<std::string::const_iterator> matches;
while(!found) {
    if(boost::regex_search(start, filesContents.end(), matches, re))
    {
        // do important stuff with the matches
        found = true; // found is used outside of loop too
        break;
    }

    index = filesContents.find_first_of("oem", index + 1);
    if(std::string::npos == index) break;
    start = filesContents.being() + index;
}

我正在使用1.47(我正在使用的版本)的 boost 库文档中的这个示例。有人请向我解释我的用法与此示例有何不同(除了我没有将内容存储到地图等中)。

据我所知,我使用的是与示例相同类型的迭代器。然而,当我编译代码时,微软的编译器告诉我:没有重载函数 boost::regex_search 的实例与参数列表匹配。然而,智能感知用我正在使用的参数显示这个函数,尽管迭代器被命名为 BidiIterator。我不知道这有什么意义,但是举个例子,我假设无论 BidiIterator 是什么,它都需要一个 std::string::iterator 来构造(也许是一个错误的假设,但考虑到例子)。该示例确实显示了第五个参数 match_flags,但该参数默认为值:boost::match_default。因此,它应该是不必要的。然而,只是为了好玩儿,我已经添加了第五个论点,但它仍然没有 不工作。我如何滥用这些论点?特别是在考虑这个例子时。

下面是一个简单的程序,它演示了没有循环算法的问题。

#include <iostream>
#include <string>

#include <boost/regex.hpp>

int main() {
std::string haystack("This is a string which contains stuff I want to find");
boost::regex needle("stuff");

boost::match_results<std::string::const_iterator> what;
if(boost::regex_search(haystack.begin(), haystack.end(), what, needle, boost::match_default)) {
    std::cout << "Found some matches" << std::endl;
    std::cout << what[0].first << std::endl;
}

return 0;
}

如果您决定编译,我将针对 1.47 的 boost 库进行编译和链接。我正在使用的项目广泛使用此版本并且更新不是由我决定的。

谢谢你的帮助。这是最令人沮丧的。

安迪

4

1 回答 1

2

一般来说,迭代器的类型是不同的。

std::string haystack("This is a string which contains stuff I want to find");

begin()end()将返回值std::string::iterator。但你的匹配类型是

boost::match_results<std::string::const_iterator> what;

std::string::iterator并且std::string::const_iterator是不同的类型。所以变种很少

  1. 将字符串声明为 const(即const std::string haystack;
  2. 将迭代器声明为 const_iterators(即std::string::const_iterator begin = haystack.begin(), end = haystack.end();)并将它们传递给regex_search.
  3. 利用boost::match_results<std::string::iterator> what;
  4. 如果你有 C++11,你可以使用haystack.cbegin()haystack.cend()

工作示例

于 2012-08-31T18:39:48.203 回答