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 (®ex, 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 (®ex, 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 match 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, ®ex, NULL, 0);
print_regerror (result, length, ®ex);
return EXIT_FAILURE;
}
}
/* Free the memory allocated from regcomp(). */
regfree (®ex);
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);
}
// 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
5条答案
按热度按时间qnzebej01#
正则表达式实际上不是ANSI C的一部分。听起来你可能在谈论POSIX正则表达式库,它附带了大多数(所有?)*nixes。下面是一个在C中使用POSIX正则表达式的例子(基于this):
或者,您可能希望查看PCRE,这是一个用于C中Perl兼容正则表达式的库。Perl语法与Java、Python和许多其他语言中使用的语法几乎相同。POSIX语法是
grep
、sed
、vi
等使用的语法。pgvzfuti2#
这可能不是您想要的,但是像re2c这样的工具可以将POSIX(-ish)正则表达式编译为ANSI C。它是作为
lex
的替代品编写的,但是如果您确实需要的话,这种方法允许您牺牲灵活性和易读性来获得最后一点速度。5t7ly7z53#
这是一个使用REG_EXTENDED的示例。这个正则表达式
允许您捕捉西班牙系统和国际十进制数。:)
n8ghc7c14#
man regex.h
没有显示regex. h的任何手动输入,但是man 3 regex
显示了一个页面,解释了用于模式匹配的POSIX函数。GNU C库中描述了相同的函数:正则表达式匹配,它解释了GNU C库同时支持POSIX.2接口和GNU C库多年来一直支持的接口。
例如,对于一个假设的程序,它打印作为参数传递的字符串中的哪一个与作为第一个参数传递的模式相匹配,您可以使用类似于下面的代码。
regcomp()
的最后一个参数至少需要是REG_EXTENDED
,否则函数将使用basic regular expressions,这意味着(例如)您需要使用a\{3\}
而不是从extended regular expressions使用的a{3}
,这可能是您期望使用的。POSIX.2还有另一个通配符匹配函数:
fnmatch()
。它不允许编译正则表达式,也不允许获取与子表达式匹配的子字符串,但它非常具体地用于检查文件名是否匹配通配符(它使用FNM_PATHNAME
标志)。pinkon5k5#
虽然上面的答案很好,但我建议使用PCRE2。这意味着你可以直接使用现在所有的正则表达式示例,而不必从一些古老的正则表达式进行翻译。
我已经做了一个答案,但我认为它也可以帮助这里。
信用卡分期付款怎么办
安装PCRE:
编译方式:
查看我的答案以了解更多细节。