- 论坛徽章:
- 0
|
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- int main ()
- {
- FILE * pFile;
- char readbuff[1024]={0};
- long nCount=0;
- char *pStr;
- char pResult[7] = {0};
-
- pFile = fopen ("test.txt","rb");
- if (pFile==NULL)
- {
- fputs("File error",stderr);
- exit (1);
- }
- while(fgets(readbuff,1024,pFile) != NULL)
- {
- pStr = strstr(readbuff,"ACCEPT");
- if (pStr == NULL)
- continue;
- strncpy(pResult, pStr, 6);
- if (strcmp(pResult,"ACCEPT") == 0)
- ++nCount;
- }
-
- printf("the number of ACCEPT is:%ld\n", nCount);
- fclose (pFile);
- return 0;
- }
复制代码 写了个简单C的 |
|