测试中,会生成一系列的html文件,其中可能很多都是pass的,偶尔是fail的,如何筛选出这样的数值呢?
用eclipse的C实现了以上功能。
#include <stdio.h>
#include <stdlib.h>
#define INDEX 7
#define LINE 1024
char *ReadData(FILE *fp, char *buf)
{
return fgets(buf, LINE, fp);//读取一行到buf
}
void someprocess(char *buf)
{
printf("%s", buf);//这里的操作你自己定义
}
int iscompare(char *buf)
{
return ((buf[15] == ':')&&((buf[16] == 'r')||(buf[16] == 'b')));
}
int main()
{
FILE *fp;
char *buf, *p;
int flag;
int cnt = 0;
if ((fp=fopen("acr.html", "r"))==NULL)
{
printf("open file error!!\n");
return 0;
}
buf=(char*)malloc(LINE*sizeof(char));
while(1) {
p=ReadData(fp, buf);//每次调用文件指针fp会自动后移一行
if(!p)//文件读取结束则跳出循环
break;
if((cnt >0)&&(cnt<INDEX))
cnt = cnt +1;
else if(flag)
cnt = 1;
else
cnt = 0;
flag = iscompare(buf);
if(cnt == INDEX)
someprocess(buf);
}
return 0;
}