我将regex.h ( POSIX ) 用于正则表达式。C中的正则表达式匹配是否有任何选择方法?
我可以很容易地检查正则表达式,但如果我需要检索匹配的值,我必须手动查找并存储它。
{{( )*(([[:alnum:]]+\\.)*)?[[:alnum:]]+( )*}}
此正则表达式在双花括号中查找任何变量匹配。但我只需要字符串中最中心的项目。如何在 C 中使用正则表达式检索值?
您需要传入一组regmatch_t
s ,正则表达式可以用匹配的索引填充。使用单个命令行参数(要测试的字符串)尝试以下程序。
一旦你有了匹配的索引,就应该很容易找出你想要的东西。(注意:matches[0]
将是整个表达式的匹配项,因此子表达式从 开始matches[1]
。)
#include <stdlib.h>
#include <stdio.h>
#include <regex.h>
int main(int argc, char* argv[])
{
const char* pattern = "{{( )*(([[:alnum:]]+\\.)*)?[[:alnum:]]+( )*}}";
regex_t rex;
int rc;
if ((rc = regcomp(&rex, pattern, REG_EXTENDED))) {
fprintf(stderr, "error %d compiling regex\n", rc);
/* retrieve error here with regerror */
return -1;
}
regmatch_t* matches = malloc(sizeof(regex_t) * (rex.re_nsub + 1));
if ((rc = regexec(&rex, argv[1], rex.re_nsub + 1, matches, 0))){
printf("no match\n");
/* error or no match */
} else {
for(int i = 0; i < rex.re_nsub; ++i) {
printf("match %d from index %d to %d: ", i, matches[i].rm_so,
matches[i].rm_eo);
for(int j = matches[i].rm_so; j < matches[i].rm_eo; ++j) {
printf("%c", argv[1][j]);
}
printf("\n");
}
}
free(matches);
regfree(&rex);
return 0;
}