Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1720909
  • 博文数量: 171
  • 博客积分: 11553
  • 博客等级: 上将
  • 技术积分: 3986
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-25 20:28
文章分类

全部博文(171)

文章存档

2012年(2)

2011年(70)

2010年(9)

2009年(14)

2008年(76)

分类: C/C++

2011-08-21 17:22:10

#include
#include
#include

/**
*Print line no. of empty line
*gcc 004.c -o 004.app `pkg-config --cflags --libs glib-2.0`
*/
int main(int argc,char** argv){
    GRegex* regex = NULL;
    GMatchInfo* match_info = NULL;

    FILE* fp = fopen("./004.c","r");
    if(fp == NULL){
        g_print("%s\n",strerror(errno));
        return -1;
    }
    char line[1024];
    int line_no = 0;
    while(fgets(line,1024,fp)){
            line_no++;
   regex = g_regex_new("^$",0,0,NULL);
   g_regex_match(regex,line,0,&match_info);
   while(g_match_info_matches(match_info)){
g_match_info_next(match_info,NULL);
                g_print("%d:%s\n",line_no,"This is a blank line");
   }
   g_match_info_free(match_info);
   g_regex_unref(regex);
        
    }

    fclose(fp);

    return 0;
}

阅读(917) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~