我认为这不是一个困难的问题,但我想知道如何以 C++ 的方式做到这一点。我想搜索定义的单词或序列的位置。
我读了这篇文章堆栈类似的问题,答案看起来很棒。但我不知道如何将此解决方案应用于文件。这个 std 指令很容易应用于 a 或 a 但我不知道如何应用于文件和序列。
操作说明:
std::ifstream file;
std::search(std::istreambuf_iterator<char>(file.rdbuf()) // search from here
, std::istreambuf_iterator<char>() // ... to here
, pSignature // looking for a sequence starting with this
, pSignature+sigSize); // and ending with this
我可以使用字符串存储要在文件中搜索的序列吗???
有人可以发布一个如何应用搜索指令的简单示例,我在编译它时总是会遇到很大的错误。
我不使用 Windows,也不想使用 Boost 库。
提前致谢。