我正在尝试编写一个程序来查找给定字符串是否为十六进制。因此,给定的字符串必须只包含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(®ex, "^[a-fA-F0-9]+$", 0);
if( reti )
{
fprintf(stderr, "Could not compile regex\n");
//exit(1);
}
/* Execute regular expression */
reti = regexec(®ex, "ABC123defG", 0, NULL, 0);
if( !reti ){
puts("Match");
}
else if( reti == REG_NOMATCH ){
puts("No match");
}
else{
regerror(reti, ®ex, 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(®ex);
return 0;
}
答案 0 :(得分:5)
您需要在regcomp的flags参数中指定REG_EXTENDED
。如果不这样做,最终会得到“基本”正则表达式语法,其中不包括+
运算符。
令人惊讶的是,“基本”正则表达式仍然存在,更不用说是默认表达式了。但这对您来说是向后兼容的。