gpt4 book ai didi

c++ - std::regex_search 与 gcc 4.9.1 的结果不一致

转载 作者:行者123 更新时间:2023-11-30 01:51:38 25 4
gpt4 key购买 nike

我从 std::regex_search 得到各种错误的结果,似乎取决于程序中的其他代码:

#include <regex>
#include <iostream>

int main(){
std::smatch res;

std::regex_search(std::string("fooquxbarquack"),res,std::regex("foo(?=qux)(.*)ar"));
std::cout<<res[0]<<std::endl;

std::regex_search(std::string("foofofowoof"),res,std::regex("(o.){4}"));
std::cout<<res[0]<<std::endl;

return 0;
}

输出(格式化为 c 字符串):

fooquxba0\n
ofofow\xB0\x00\n

如果我反转测试,输出将变为:

ofofow\xD0\x00\n
fooquxbar\n

对于代码的其他安排,它有时会产生预期的输出(fooquxbarofofowoo)。

海湾合作委员会版本:

$ ../bin/gcc -v
Using built-in specs.
COLLECT_GCC=../bin/gcc
COLLECT_LTO_WRAPPER=/compilers/gcc_r/4.9.1rh62/libexec/gcc/x86_64-unknown-linux-gnu/4.9.1/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: /free/tmp/gccwork/gcc-4.9.1//configure --prefix=/compilers/gcc_r/4.9.1rh62/
Thread model: posix
gcc version 4.9.1 (GCC)

最佳答案

您不能使用临时 std::string 调用 regex_searchregex_match 重载获取 match_results . (好吧,在 C++14 之前,您可以,但是您不能对结果做任何有用的事情。)

这些函数使用迭代器将 match_results 填充到您传递的字符串中,但是如果您传递一个临时的 std::string,那么临时的会在完整的表达式,并且迭代器无效。当您稍后尝试使用 res[0] 时,会产生未定义的行为。

这就是为什么在 C++14 中 LWG issue 2329添加了显式删除的重载以防止它们被临时调用。看起来 libstdc++ 还没有实现这个。您的代码无法在 C++14 模式下使用 clang 和 libc++ 进行编译。

关于c++ - std::regex_search 与 gcc 4.9.1 的结果不一致,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25892371/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com