2

我正在尝试编写一个程序来查找给定字符串是否为十六进制。所以给定字符串必须仅包含 0-9、AF 和 af 之间的字符。我如何使用 C 来完成此操作?我尝试的程序在下面给出,但正则表达式模式运行不正常。这种模式会出现什么错误?

#include <sys/types.h>
#include <regex.h>
#include <stdio.h>

int main(int argc, char *argv[]){
        regex_t regex;
        int reti;
        char msgbuf[100];

/* Compile regular expression */
        reti = regcomp(&regex, "^[a-fA-F0-9]+$", 0);
        if( reti )
        {
            fprintf(stderr, "Could not compile regex\n");
            //exit(1);
        }

/* Execute regular expression */
        reti = regexec(&regex, "ABC123defG", 0, NULL, 0);
        if( !reti ){
                puts("Match");
        }
        else if( reti == REG_NOMATCH ){
                puts("No match");
        }
        else{
                regerror(reti, &regex, msgbuf, sizeof(msgbuf));
                fprintf(stderr, "Regex match failed: %s\n", msgbuf);
                //exit(1);
        }

/* Free compiled regular expression if you want to use the regex_t again */
    regfree(&regex);

        return 0;
}
4

1 回答 1

5

您需要REG_EXTENDED在 regcomp 的 flags 参数中指定。如果不这样做,您最终会得到“基本”正则表达式语法,其中不包括+运算符等。

“基本”正则表达式仍然存在,这有点令人惊讶,更不用说默认了。但这对您来说是向后兼容的。

于 2013-10-31T06:37:35.310 回答