ANSI Cで正規表現を使用する方法のいくつかの簡単な例とベストプラクティスが欲しいのman regex.h
ですが、あまり役に立ちません。
ANSI Cで正規表現を使用する方法のいくつかの簡単な例とベストプラクティスが欲しいのman regex.h
ですが、あまり役に立ちません。
回答:
正規表現は実際にはANSI Cの一部ではありません。ほとんどの(すべての)* nixに付属しているPOSIX正規表現ライブラリについて話しているように思えます。これは、CでPOSIX正規表現を使用する例です(これに基づいています)。
#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);
あるいは、CでPerl互換の正規表現のライブラリであるPCREをチェックアウトすることもできます。Perlの構文は、Java、Python、および他の多くの言語で使用されているものとほとんど同じです。POSIXの構文は構文で使用されgrep
、sed
、vi
、など
regcomp
、cflags
、ビットマスクです。pubs.opengroup.org/onlinepubs/009695399/functions/regcomp.htmlから:「cflags引数は、次のフラグの0個以上のビット単位の包含ORです...」。ORを一緒にするとゼロになります。0が返されます。Linuxのマンページにregcomp
「cflagsはビット単位であるか、次の1つ以上のビットである可能性がある」とありますが、誤解を招くようです。
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-September/msg00276.html
それはおそらくあなたが望むものではないでしょうが、re2cのようなツールはPOSIX(-ish)正規表現をANSI Cにコンパイルできます。これはの代わりとして書かれていlex
ますが、このアプローチにより、もしもあなたは本当にそれが必要です。
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 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$"
スペイン語のシステムと国際で10進数をキャッチできます。:)
#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の使用をお勧めします。つまり、今ある文字通りすべての正規表現の例を文字通り使用でき、いくつかの古代の正規表現から翻訳する必要はありません。
これについてはすでに回答しましたが、ここでも役立つと思います。
// 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
詳細については私の答えを確認してください。