码迷,mamicode.com
首页 > 其他好文 > 详细

字符串中查找字符

时间:2014-09-22 11:40:02      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:style   ar   sp   log   c   r   bs   har   字符串   

0:字符串中不包含字符c; >0 包含字符c.

int str_search(char *cstr,char c)

{

    int irs = 0;

    char *cp = cstr;

    zlog_debug(fzs,"cp=%s",cp);

    zlog_debug(fzs,"c=%c",c);

    while(*cp != 0)

    {

       if(*cp==c)

        {

            irs++;

}

cp++;

    }

    cp = NULL;

    return irs;

}


字符串中查找字符

标签:style   ar   sp   log   c   r   bs   har   字符串   

原文地址:http://my.oschina.net/u/1865121/blog/316864

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!