C 语言库函数 - strspn()

返回上一级

C 语言标准库 <string.h> 函数 size_t strspn(const char str1, const char str2) 检索字符串 str1 中第一个不在字符串 str2 中出现的字符下标

头文件

#include <string.h>

函数原型

下面是 strspn() 函数的原型

size_t strspn(const char *str1, const char *str2)

参数

  • str1 : 要被检索的 C 字符串
  • str2 : 该字符串包含了要在 str1 中进行匹配的字符列表

返回值

该函数返回 str1 中第一个不在字符串 str2 中出现的字符下标

范例

下面的范例演示了 strspn() 函数的用法

/**
 * file: main.c
 * author: 简单教程(www.twle.cn)
 *
 * Copyright © 2015-2065 www.twle.cn. All rights reserved.
 */

#include <stdio.h>
#include <string.h>

int main ()
{
   int len;
   const char str1[] = "ABCDEFG019874";
   const char str2[] = "ABCD";

   len = strspn(str1, str2);

   printf("初始段匹配长度 %d\n", len );

   return(0);
}

编译运行范例,输出结果如下

$ gcc main.c && ./a.out
初始段匹配长度 4

返回上一级

C 语言标准库

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.