C也是存在正则表达式的
上文中有一个样例代码,进行了测试
总结一下有些注意点:
1.上述代码的匹配子串很奇怪,为什么会出现
cnt= a very
cnt= a
cnt= very
cyc:**************
的结果??
2.可以使用^xxxx$来限定字符串从开头到结尾都要匹配
3.REG_NEWLINE的效果没试出来
现下想实现判断整串字符串都由数字和字母组成。
char *haa = "dasdwer213%1fsw";
char *regex = "^[0-9a-zA-Z]+$";
struct timeval s1, s2;
gettimeofday(&s1, NULL);
regex_t comment;
regcomp(&comment, regex, REG_EXTENDED | REG_NEWLINE | REG_NOSUB); // regmatch_t regmatch[100]; //如果不保存结果,那么不必申请这个
int j = regexec(&comment, haa, ,
NULL, );
printf("Get Code\n");
if (j == REG_NOERROR) {
printf("Success\n");
} else if (j == REG_NOMATCH) {
printf("Failed\n");
} else {
size_t len = regerror(j, &comment, NULL, );
// printf("Error Len :%d\n",len);
char buf[len];
bzero(buf, len);
regerror(j, NULL, buf, len);
printf("Error :%s\n", buf);
}
regfree(&comment);
gettimeofday(&s2, NULL);
int time = (s2.tv_sec - s1.tv_sec) * + (s2.tv_usec - s1.tv_usec);
printf("time :%d\n", time);
return ;