我在用单反相机(https://code.google.com/p/slre/
我正在用这种方式检查15个带有不同正则表达式的字符串:

struct slre        slre;
struct cap         captures[4 + 1];
int i = 0;
int numberOfSettings = 15;
for (i; i < numberOfSettings; i++) {
    if (!slre_compile(&slre, settings[i].regex)) {
        printf("Error compiling RE: %s\n", slre.err_str);
    }
    else if (!slre_match(&slre, settings[i].value, strlen(settings[i].value), captures)) {
        printf("\nSetting '%s' does not match the regular expression!", settings[i].internName);
    }
}

我用于解析IP地址的正则表达式(settings[i].regex)是:
^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$

检查值(settings[i].value)为8.8.8.8
我也在javascript中使用相同的正则表达式,它们按预期工作。
有人知道为什么这会返回错误吗?

最佳答案

SLRE不支持|-请参阅slre.h中的“支持的语法”部分。
(除非您有特定的理由不这样做,否则我建议您使用PCRE

07-28 06:05