मैं कुछ सरल उदाहरणों के बाद हूं और एएनएसआई सी में नियमित अभिव्यक्ति का उपयोग करने के सर्वोत्तम तरीकों से man regex.h
उतनी मदद नहीं मिलती है।
मैं कुछ सरल उदाहरणों के बाद हूं और एएनएसआई सी में नियमित अभिव्यक्ति का उपयोग करने के सर्वोत्तम तरीकों से man regex.h
उतनी मदद नहीं मिलती है।
जवाबों:
नियमित अभिव्यक्ति वास्तव में ANSI C. का हिस्सा नहीं हैं। ऐसा लगता है कि आप POSIX नियमित अभिव्यक्ति लाइब्रेरी के बारे में बात कर रहे हैं, जो सबसे (सभी?) * निक्स में सबसे अधिक आती है। यहाँ C में POSIX regexes का उपयोग करने का एक उदाहरण है ( इस पर आधारित ):
#include <regex.h>
regex_t regex;
int reti;
char msgbuf[100];
/* Compile regular expression */
reti = regcomp(®ex, "^a[[:alnum:]]", 0);
if (reti) {
fprintf(stderr, "Could not compile regex\n");
exit(1);
}
/* Execute regular expression */
reti = regexec(®ex, "abc", 0, NULL, 0);
if (!reti) {
puts("Match");
}
else if (reti == REG_NOMATCH) {
puts("No match");
}
else {
regerror(reti, ®ex, msgbuf, sizeof(msgbuf));
fprintf(stderr, "Regex match failed: %s\n", msgbuf);
exit(1);
}
/* Free memory allocated to the pattern buffer by regcomp() */
regfree(®ex);
वैकल्पिक रूप से, आप PCRE की जाँच कर सकते हैं। Perl- संगत नियमित अभिव्यक्तियों के लिए एक पुस्तकालय। POSIX वाक्य रचना के द्वारा प्रयोग किया वाक्य रचना है grep
, sed
, vi
, आदि
regcomp
, cflags
, बिटमास्क है। से pubs.opengroup.org/onlinepubs/009695399/functions/regcomp.html : "CFLAGS तर्क बिटवाइज़ समावेशी शून्य या निम्न झंडे के अधिक की या है ..."। यदि आप OR-एक साथ शून्य करते हैं, तो आपको 0. मिलेगा। मैं देखता हूं कि लिनक्स मैनपेज के लिए regcomp
"cflags बिटवाइज़-या एक या अधिक निम्न में से एक हो सकता है", जो भ्रामक लगता है।
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 संपूर्ण स्ट्रिंग है। सीमा से बाहर के लिए त्रुटि जाँच जोड़ें,
regfree
असफल होने के बाद क्या आवश्यक है regcomp
, इसके बारे में, हालांकि यह वास्तव में बल्कि अंडर-निर्दिष्ट है, यह सुझाव देता है कि ऐसा नहीं किया जाना चाहिए: redhat.com/archives/libvir-list/2013-eee/msg00276.html
यह संभवत: वह नहीं है जो आप चाहते हैं, लेकिन re2c जैसे उपकरण ANSI C. के लिए POSIX (-ish) नियमित अभिव्यक्ति संकलित कर सकते हैं। यह एक प्रतिस्थापन के रूप में लिखा गया है lex
, लेकिन यह दृष्टिकोण आपको गति के अंतिम बिट के लिए लचीलेपन और सुगमता का त्याग करने की अनुमति देता है, यदि आपको वास्तव में इसकी आवश्यकता है।
man regex.h
रिपोर्ट में regex.h के लिए कोई मैन्युअल प्रविष्टि नहीं है, लेकिन man 3 regex
आपको पैटर्न मिलान के लिए POSIX फ़ंक्शन के बारे में बताते हुए एक पृष्ठ देता है। जीएनयू सी लाइब्रेरी: रेगुलर एक्सप्रेशन मैचिंग
में समान कार्यों का वर्णन किया गया है , जो बताता है कि जीएनयू सी लाइब्रेरी 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 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);
}
regcomp()
कम से कम होना चाहिए REG_EXTENDED
, या फ़ंक्शंस का अंतिम तर्क बुनियादी नियमित अभिव्यक्तियों का उपयोग करेगा , जिसका अर्थ है कि (उदाहरण के लिए) आपको विस्तारित नियमित अभिव्यक्तियों से उपयोग किए जाने के a\{3\}
बजाय उपयोग करने की आवश्यकता होगी , जो कि संभवतः आप उपयोग करने की अपेक्षा करते हैं।a{3}
POSIX.2 में वाइल्डकार्ड मिलान के लिए एक और फ़ंक्शन भी है fnmatch()
:। यह नियमित अभिव्यक्ति को संकलित करने की अनुमति नहीं देता है, या सब-एक्सप्रेशन से मेल खाते हुए सब्सट्रिंग्स प्राप्त करता है, लेकिन यह जांचने के लिए बहुत विशिष्ट है कि फ़ाइल नाम किसी वाइल्डकार्ड से मेल खाता है (जैसे कि यह FNM_PATHNAME
ध्वज का उपयोग करता है )।
यह 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(®ex, "^(-)?([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(®ex, msgbuf, 0, NULL, 0);
if (!reti) {
puts("Match");
}
else if (reti == REG_NOMATCH) {
puts("No match");
}
else {
regerror(reti, ®ex, msgbuf, sizeof(msgbuf));
fprintf(stderr, "Regex match failed: %s\n", msgbuf);
exit(1);
}
/* Free memory allocated to the pattern buffer by regcomp() */
regfree(®ex);
}
}
जबकि ऊपर उत्तर अच्छा है, मैं PCRE2 का उपयोग करने की सलाह देता हूं । इसका मतलब यह है कि आप सचमुच सभी रेगेक्स उदाहरणों का उपयोग कर सकते हैं और अभी कुछ प्राचीन रेगेक्स से अनुवाद नहीं करना है।
मैंने पहले से ही इसके लिए एक उत्तर दिया, लेकिन मुझे लगता है कि यह यहां भी मदद कर सकता है ।।
क्रेडिट कार्ड नंबर के लिए खोज करने के लिए C में Regex
// 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
अधिक विवरण के लिए मेरे उत्तर की जाँच करें।