std :: regex用g ++失败了吗?

时间:2016-06-07 07:58:11

标签: regex c++11

我试图使用C ++ 11的正则表达式来完成一个非常简单的过滤任务,但我无法让它像我想要的那样工作。所以我开始写一个单独的演示程序。

事情是,最简单的事情失败了。例如:

#include <regex>
#include <string>
#include <iostream>

int main()
{
  std::vector<std::string> inputs;
  inputs.push_back("1");
  inputs.push_back("123");
  inputs.push_back("a");
  inputs.push_back("apple");
  inputs.push_back(":apple3.worm");

  std::string pattern("[0-9]");
  std::regex r(pattern, std::regex_constants::grep);

  for(auto const &s: inputs)
  {
    bool ok = std::regex_match(s, r);
    std::cout << (ok?"POS":"NEG") << ": " << s << std::endl;
  }
  return 0;
}

使用g++ -Wextra -pedantic -std=c++11 -O3 rfail.cpp -o rfail编制时未发出警告。输出:

POS: 1
NEG: 123
POS: a
NEG: apple
NEG: :apple3.worm

[0-9]替换为[[:digit:]]时发生同样的情况。怎么了?我做错了什么?

更新

$ g++ -v
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.8/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.8.4-2ubuntu1~14.04.3' --with-bugurl=file:///usr/share/doc/gcc-4.8/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.8 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.8 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-libmudflap --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.8-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.3)

1 个答案:

答案 0 :(得分:1)

如果您仔细阅读regex_match doc,您会注意到:

  

整个目标序列必须与此函数的正则表达式匹配才能返回true (即,在匹配之前或之后没有任何其他字符)。对于在匹配仅是序列的一部分时返回true的函数,请参阅regex_search。

因此,如果您想检查字符串是否包含至少1个数字,请将正则表达式更改为.*[0-9].*

请注意,我无法重现您的输出,我的是:

POS: 1
NEG: 123
NEG: a // <- here's the diff
NEG: apple
NEG: :apple3.worm

(使用Apple LLVM version 7.3.0 (clang-703.0.29)编译)

鉴于您的gcc版本,它似乎正在运行<regex>的高度实验性实施,该实施已包含在gcc 4.9 more information about the bug here中。

如果考虑在代码中使用正则表达式,则应考虑更新。