gpt4 book ai didi

c - POSIX 正则表达式(C 语言)匹配 uuid

转载 作者:行者123 更新时间:2023-11-30 15:43:38 46 4
gpt4 key购买 nike

我正在尝试在输入字符串中查找 UUID。我修改了示例代码http://www.peope.net/old/regex.html并想出了这个:

#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, "[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}", 0);
if( reti ){ fprintf(stderr, "Could not compile regex\n"); exit(1); }

/* Execute regular expression */
reti = regexec(&regex, "'id':'0677233b-65e5-4d62-a202-2120536210d6'", 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;
}

但是,它不匹配。有什么建议吗?

最佳答案

{N} 是扩展的正则表达式功能。将 REG_EXTENDED 标志传递给 regcomp

关于c - POSIX 正则表达式(C 语言)匹配 uuid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19819603/

46 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com