[Wonderful] How to use regular expressions in C

Source: Internet
Author: User
Tags preg

 

[Wonderful] How to use regular expressions in C

Http://www.chinaunix.net Author: fwizard published at: 10:59:20
[Comment] [View Original] [C/C ++ discussion area] [close]

We can see that you have discussed this topic and made some contributions:

If you are familiar with SED, awk, grep, or VI in Linux, the concept of regular expressions is certainly not unfamiliar. Because it can greatly simplify the complexity of processing strings, it has been applied in many Linux utilities. Do not think that regular expressions are only patents for Perl, Python, Bash, and other scripting languages. As a C language programmer, users can also use regular expressions in their own programs.

Standard C and C ++ do not support regular expressions, but some function libraries can help C/C ++ programmers complete this function, among them, the most famous Perl-Compatible Regular Expression Library for the number of Philip Hazel is included in many Linux releases.

Compile regular expressions

To improve efficiency, before comparing a string with a regular expression, you must first use the regcomp () function to compile it and convert it to the regex_t structure:

Int regcomp (regex_t * preg, const char * RegEx, int cflags );

The RegEx parameter is a string that represents the regular expression to be compiled. The preg parameter points to a data structure declared as regex_t, which is used to save the compilation result; the cflags parameter determines how the regular expression is processed.

If the regcomp () function is successfully executed and the compilation result is correctly filled into the preg, the function returns 0, and any other returned results indicate an error.

Match Regular Expression

Once the regular expression is successfully compiled using the regcomp () function, you can call the regexec () function to complete the pattern matching:

Int regexec (const regex_t * preg, const char * string, size_t nmatch, regmatch_t pmatch [], int eflags );
Typedef struct {
Regoff_t rm_so;
Regoff_t rm_eo;
} Regmatch_t;

The preg parameter points to the compiled regular expression. The string parameter is the string to be matched, and the nmatch and pmatch parameters are used to return the matching results to the caller, the last parameter eflags determines the matching details.

In the process of calling the regexec () function for pattern matching, there may be multiple matches with the given regular expression in the string. The pmatch parameter is used to save these matching locations, the nmatch parameter indicates the maximum number of matching results that can be filled into the pmatch array by the regexec () function. When the regexec () function returns successfully, the value is from string + pmatch [0]. rm_so to string + pmatch [0]. rm_eo is the first matched string from string + pmatch [1]. rm_so to string + pmatch [1]. rm_eo is the second matching string, and so on.

Release Regular Expression

Whenever compiled regular expressions are no longer needed, you should call the regfree () function to release them to avoid Memory leakage.

Void regfree (regex_t * preg );

The regfree () function does not return any results. It only receives a pointer to the regex_t data type. This is the compilation result obtained by calling the regcomp () function.

If the regcomp () function is called multiple times for the same regex_t structure in the program, the POSIX standard does not specify whether the regfree () function must be called to release each time, however, we recommend that you call the regfree () function once each time you compile the regular expression to release the occupied storage space as soon as possible.

Report error information

If regcomp () or regexec () is called to obtain a non-zero return value, it indicates that an error occurs during the processing of the regular expression, in this case, you can call the regerror () function to obtain detailed error information.

Size_t regerror (INT errcode, const regex_t * preg, char * errbuf, size_t errbuf_size );

The errcode parameter is the error code from the regcomp () or regexec () function, while the preg parameter is the compilation result obtained by the regcomp () function, the purpose is to provide the context necessary for formatting a message to the regerror () function. When executing the regerror () function, the maximum number of bytes specified by the errbuf_size parameter will be filled in the errbuf buffer with the formatted error message and the length of the error message will be returned.

Apply Regular Expressions

Finally, a specific example is provided to describe how to process regular expressions in C language programs.

# Include <stdio. h>;
# Include <sys/types. h>;
# Include <RegEx. h>;

/* Function for getting substrings */
Static char * substr (const char * STR, unsigned start, unsigned end)
{
Unsigned n = end-start;
Static char stbuf [256];
Strncpy (stbuf, STR + start, N );
Stbuf [N] = 0;
Return stbuf;
}
/* Main Program */
Int main (INT argc, char ** argv)
{
Char * pattern;
Int X, Z, lno = 0, cflags = 0;
Char ebuf [128], lbuf [256];
Regex_t reg;
Regmatch_t PM [10];
Const size_t nmatch = 10;
/* Compile a regular expression */
Pattern = argv [1];
Z = regcomp (& reg, pattern, cflags );
If (Z! = 0 ){
Regerror (z, & reg, ebuf, sizeof (ebuf ));
Fprintf (stderr, "% s: Pattern '% s'/N", ebuf, pattern );
Return 1;
}
/* Process input data row by row */
While (fgets (lbuf, sizeof (lbuf), stdin )){
++ LNO;
If (Z = strlen (lbuf)>; 0 & lbuf [Z-1] = '/N ')
Lbuf [Z-1] = 0;
/* Apply a regular expression to each row */
Z = regexec (& reg, lbuf, nmatch, PM, 0 );
If (Z = reg_nomatch) continue;
Else if (Z! = 0 ){
Regerror (z, & reg, ebuf, sizeof (ebuf ));
Fprintf (stderr, "% s: REGCOM ('% s')/n", ebuf, lbuf );
Return 2;
}
/* Output the processing result */
For (x = 0; x <nmatch & PM [X]. rm_so! =-1; ++ X ){
If (! X) printf ("% 04d: % s/n", lno, lbuf );
Printf ("$ % d = '% s'/N", X, substr (lbuf, PM [X]. rm_so, PM [X]. rm_eo ));
}
}
/* Release the regular expression */
Regfree (& reg );
Return 0;
}

The above program obtains the regular expression from the command line, applies it to each row of data obtained from the standard input, and prints the matching result. Run the following command to compile and execute the program:

# GCC Regexp. C-o Regexp
#./Regexp 'regex [A-Z] * '<Regexp. c
0003: # include <RegEx. h>;
$0 = 'regex'
0027: regex_t reg;
$0 = 'regex'
0054: z = regexec (& reg, lbuf, nmatch, PM, 0 );
$0 = 'regexec'

Summary

Regular Expressions are a useful tool for programs that require complex data processing. This article focuses on how to use regular expressions in C to simplify string processing, so as to gain the flexibility similar to the Perl language in data processing.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.