如何在c中写一个正则表达式来查找字符串是否为十六进制

时间:2013-10-31 06:30:15

标签: c regex linux ubuntu gcc

我正在尝试编写一个程序来查找给定字符串是否为十六进制。因此,给定的字符串必须只包含0-9,A-F和a-f之间的字符。如何使用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;
}

1 个答案:

答案 0 :(得分:5)

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

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