首页 > 学院 > 开发设计 > 正文

在一些字符串中搜索某个特定的字符值

2019-11-14 09:49:58
字体:
来源:转载
供稿:网友
//在一些字符串中搜索某个特定的字符值int FindString(char **strings, char value)//strings是一个指向指针数组的指针,value是我们所查找的字符值{assert(strings != NULL);char *string;//我们当前正在查找的字符串while ((string=*strings++)!=NULL)//对于列表中的每个字符串{//观察字符串中的每个字符,看看是不是我们想要查找的那个while (string++!=‘/0’){if (*string++ ==value)return 1;}}return 0;}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表