sherwin002 发表于 2014-9-18 14:57:03

[技术交流] C标准库之字符(串)函数_strcspn

本帖最后由 sherwin002 于 2014-9-24 08:27 编辑

功能:
         查找string字符串中第一个是strCharSet中的字符的位置

函数原型:

   size_t strcspn(const char *string,const char *strCharSet)

参数:


参数   说明
string   字符串
strCharSet    字符串

返回值:
   string字符串中第一个是strCharSet中的字符的位置
要求:

函数需要的头文件
strcspn<string.h>

举例:
#include <stdio.h>
#include<string.h>

int main ()
{

    char str[] = "Welcome to China",ss[]= "Hello";
      int p;
      p = strcspn(str,ss);
      printf("%d",p);
      getchar ();
      return 0;
}
结果:





鱼C侦探团
页: [1]
查看完整版本: [技术交流] C标准库之字符(串)函数_strcspn