C 语言本身并不直接支持正则表达式,但你可以使用 POSIX 正则表达式库 (regex.h) 来实现正则表达式匹配
#include<stdio.h>
#include <stdlib.h>
#include<string.h>
#include<regex.h>
int main() {
char *pattern = "abc"; // 正则表达式模式
char *string = "abcdef"; // 要匹配的字符串
regex_t regex;
int reti;
// 编译正则表达式
reti = regcomp(®ex, pattern, 0);
if (reti) {
fprintf(stderr, "Could not compile regex\n");
exit(1);
}
// 执行匹配
reti = regexec(®ex, string, 0, NULL, 0);
if (!reti) {
printf("Match found.\n");
} else if (reti == REG_NOMATCH) {
printf("No match found.\n");
} else {
regerror(reti, ®ex, string, sizeof(string));
fprintf(stderr, "Regex match failed: %s\n", string);
exit(1);
}
// 释放内存
regfree(®ex);
return 0;
}
这个示例中,我们使用了一个简单的正则表达式模式 “abc”。如果在给定的字符串中找到匹配项,程序将输出 “Match found.”,否则输出 “No match found.”。请注意,这个示例仅适用于 POSIX 系统,如 Linux 或 macOS。在 Windows 上,你需要使用其他库(如 PCRE)来实现正则表达式匹配。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。