C语言中的正则表达式:示例?


171

我正在学习一些简单的示例以及有关如何在ANSI C man regex.h中使用正则表达式的最佳实践。它没有提供太多帮助。


6
ANSI C中没有对regex的内置支持。您使用的是什么regex库?

7
Rob Pike为他和Brian Kernighan合着的《编程实践》一书编写了一个小的正则表达式字符串搜索函数,该函数接受了非常有用的正则表达式子集。参见Kernighan博士cs.princeton.edu/courses/archive/spr09/cos333/beautiful.html的
理查德·钱伯斯

Answers:


233

正则表达式实际上不是ANSI C的一部分。听起来您可能正在谈论POSIX正则表达式库,该库带有大多数(全部?)* nixes。这是在C中使用POSIX正则表达式的示例(基于this):

#include <regex.h>        
regex_t regex;
int reti;
char msgbuf[100];

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

/* Execute regular expression */
reti = regexec(&regex, "abc", 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 memory allocated to the pattern buffer by regcomp() */
regfree(&regex);

或者,您可能想签出PCRE,这是C语言中与Perl兼容的正则表达式的库。Perl语法与Java,Python和许多其他语言中使用的语法几乎相同。POSIX的语法的语法使用grepsedvi等。


7
除非您需要避免第二个PCRE的依赖关系,否则它具有一些不错的语法增强功能并且非常稳定。至少在一些旧版本的Linux,在“建”正则表达式库并不太难崩溃给予一定的输入字符串和一定的正则表达式,“几乎”匹配或涉及很多特殊字符
BDK

@Laurence将0传递给regcomp是什么意思?regcomp仅采用四个整数值1、2、4和8来表示4种不同的模式。
lixiang 2013年

2
@lixiang的最后一个参数regcompcflags是一个位掩码。来自pubs.opengroup.org/onlinepubs/009695399/functions/regcomp.html:“ cflags参数是以下零个或多个标志的按位或运算 ...”。如果您将OR或总计为零,那么您将得到0。我看到Linux的联机帮助页上regcomp说“ cflags可能是按位或以下之一或多个”,这的确令人误解。
劳伦斯·贡萨尔维斯

2
您可以从匹配组中提取文本,例如:regmatch_t matches[MAX_MATCHES]; if (regexec(&exp, sz, MAX_MATCHES, matches, 0) == 0) { memcpy(buff, sz + matches[1].rm_so, matches[1].rm_eo - matches[1].rm_so); printf("group1: %s\n", buff); }请注意,组匹配从1开始,组0是整个字符串。为出界等添加错误检查
BurnsBA

2
关于regfree失败后是否有必要regcomp(尽管确实不够充分),这表明不应该这样做:redhat.com/archives/libvir-list/2013-September/msg00276.html
Daniel Jour

12

它可能不是您想要的,但是像re2c这样的工具可以将POSIX(-ish)正则表达式编译为ANSIC。它是替代编写的lex,但是这种方法可以让您牺牲灵活性和易读性,如果需要的话您真的需要它。


9

man regex.h报告没有regex.h的手动输入,但是man 3 regex 提供了一个页面,解释了用于模式匹配的POSIX函数。GNU C库:正则表达式匹配
中描述了相同的功能,函数解释说GNU C库同时支持POSIX.2接口和GNU C库已有多年的接口。

例如,对于一个假设程序,该程序打印作为参数传递的字符串中的哪个与作为第一个参数传递的模式相匹配,则可以使用类似于以下代码的代码。

#include <errno.h>
#include <regex.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void print_regerror (int errcode, size_t length, regex_t *compiled);

int
main (int argc, char *argv[])
{
  regex_t regex;
  int result;

  if (argc < 3)
    {
      // The number of passed arguments is lower than the number of
      // expected arguments.
      fputs ("Missing command line arguments\n", stderr);
      return EXIT_FAILURE;
    }

  result = regcomp (&regex, argv[1], REG_EXTENDED);
  if (result)
    {
      // Any value different from 0 means it was not possible to 
      // compile the regular expression, either for memory problems
      // or problems with the regular expression syntax.
      if (result == REG_ESPACE)
        fprintf (stderr, "%s\n", strerror(ENOMEM));
      else
        fputs ("Syntax error in the regular expression passed as first argument\n", stderr);
      return EXIT_FAILURE;               
    }
  for (int i = 2; i < argc; i++)
    {
      result = regexec (&regex, argv[i], 0, NULL, 0);
      if (!result)
        {
          printf ("'%s' matches the regular expression\n", argv[i]);
        }
      else if (result == REG_NOMATCH)
        {
          printf ("'%s' doesn't the regular expression\n", argv[i]);
        }
      else
        {
          // The function returned an error; print the string 
          // describing it.
          // Get the size of the buffer required for the error message.
          size_t length = regerror (result, &regex, NULL, 0);
          print_regerror (result, length, &regex);       
          return EXIT_FAILURE;
        }
    }

  /* Free the memory allocated from regcomp(). */
  regfree (&regex);
  return EXIT_SUCCESS;
}

void
print_regerror (int errcode, size_t length, regex_t *compiled)
{
  char buffer[length];
  (void) regerror (errcode, compiled, buffer, length);
  fprintf(stderr, "Regex match failed: %s\n", buffer);
}

的最后一个参数regcomp()需要至少REG_EXTENDED,或功能将使用基本的正则表达式,这意味着(举例来说),你将需要使用a\{3\},而不是a{3}从使用的扩展正则表达式,这可能是你希望用什么。

POSIX.2还有另一个通配符匹配功能:fnmatch()。它不允许编译正则表达式或获取与子表达式匹配的子字符串,但是它非常特定于检查文件名是否与通配符匹配(例如,它使用FNM_PATHNAME标志)。


6

这是使用REG_EXTENDED的示例。这个正则表达式

"^(-)?([0-9]+)((,|.)([0-9]+))?\n$"

允许您捕获西班牙语系统和国际上的小数。:)

#include <regex.h>
#include <stdlib.h>
#include <stdio.h>
regex_t regex;
int reti;
char msgbuf[100];

int main(int argc, char const *argv[])
{
    while(1){
        fgets( msgbuf, 100, stdin );
        reti = regcomp(&regex, "^(-)?([0-9]+)((,|.)([0-9]+))?\n$", REG_EXTENDED);
        if (reti) {
            fprintf(stderr, "Could not compile regex\n");
            exit(1);
        }

        /* Execute regular expression */
        printf("%s\n", msgbuf);
        reti = regexec(&regex, msgbuf, 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 memory allocated to the pattern buffer by regcomp() */
        regfree(&regex);
    }

}

5

虽然上面的答案很好,但我建议使用PCRE2。这意味着您可以立即使用所有正则表达式示例,而不必从某些古老的正则表达式进行翻译。

我已经对此做出了回答,但我认为它也可以在此提供帮助。

C中的正则表达式以搜索信用卡号

// YOU MUST SPECIFY THE UNIT WIDTH BEFORE THE INCLUDE OF THE pcre.h

#define PCRE2_CODE_UNIT_WIDTH 8
#include <stdio.h>
#include <string.h>
#include <pcre2.h>
#include <stdbool.h>

int main(){

bool Debug = true;
bool Found = false;
pcre2_code *re;
PCRE2_SPTR pattern;
PCRE2_SPTR subject;
int errornumber;
int i;
int rc;
PCRE2_SIZE erroroffset;
PCRE2_SIZE *ovector;
size_t subject_length;
pcre2_match_data *match_data;


char * RegexStr = "(?:\\D|^)(5[1-5][0-9]{2}(?:\\ |\\-|)[0-9]{4}(?:\\ |\\-|)[0-9]{4}(?:\\ |\\-|)[0-9]{4})(?:\\D|$)";
char * source = "5111 2222 3333 4444";

pattern = (PCRE2_SPTR)RegexStr;// <<<<< This is where you pass your REGEX 
subject = (PCRE2_SPTR)source;// <<<<< This is where you pass your bufer that will be checked. 
subject_length = strlen((char *)subject);




  re = pcre2_compile(
  pattern,               /* the pattern */
  PCRE2_ZERO_TERMINATED, /* indicates pattern is zero-terminated */
  0,                     /* default options */
  &errornumber,          /* for error number */
  &erroroffset,          /* for error offset */
  NULL);                 /* use default compile context */

/* Compilation failed: print the error message and exit. */
if (re == NULL)
  {
  PCRE2_UCHAR buffer[256];
  pcre2_get_error_message(errornumber, buffer, sizeof(buffer));
  printf("PCRE2 compilation failed at offset %d: %s\n", (int)erroroffset,buffer);
  return 1;
  }


match_data = pcre2_match_data_create_from_pattern(re, NULL);

rc = pcre2_match(
  re,
  subject,              /* the subject string */
  subject_length,       /* the length of the subject */
  0,                    /* start at offset 0 in the subject */
  0,                    /* default options */
  match_data,           /* block for storing the result */
  NULL);

if (rc < 0)
  {
  switch(rc)
    {
    case PCRE2_ERROR_NOMATCH: //printf("No match\n"); //
    pcre2_match_data_free(match_data);
    pcre2_code_free(re);
    Found = 0;
    return Found;
    //  break;
    /*
    Handle other special cases if you like
    */
    default: printf("Matching error %d\n", rc); //break;
    }
  pcre2_match_data_free(match_data);   /* Release memory used for the match */
  pcre2_code_free(re);
  Found = 0;                /* data and the compiled pattern. */
  return Found;
  }


if (Debug){
ovector = pcre2_get_ovector_pointer(match_data);
printf("Match succeeded at offset %d\n", (int)ovector[0]);

if (rc == 0)
  printf("ovector was not big enough for all the captured substrings\n");


if (ovector[0] > ovector[1])
  {
  printf("\\K was used in an assertion to set the match start after its end.\n"
    "From end to start the match was: %.*s\n", (int)(ovector[0] - ovector[1]),
      (char *)(subject + ovector[1]));
  printf("Run abandoned\n");
  pcre2_match_data_free(match_data);
  pcre2_code_free(re);
  return 0;
}

for (i = 0; i < rc; i++)
  {
  PCRE2_SPTR substring_start = subject + ovector[2*i];
  size_t substring_length = ovector[2*i+1] - ovector[2*i];
  printf("%2d: %.*s\n", i, (int)substring_length, (char *)substring_start);
  }
}

else{
  if(rc > 0){
    Found = true;

    } 
} 
pcre2_match_data_free(match_data);
pcre2_code_free(re);
return Found;

}

使用以下命令安装PCRE:

wget https://ftp.pcre.org/pub/pcre/pcre2-10.31.zip
make 
sudo make install 
sudo ldconfig

使用编译:

gcc foo.c -lpcre2-8 -o foo

检查我的答案以获取更多详细信息。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.