首页 > 编程笔记 > C语言笔记 > C语言函数大全 阅读:392

C语言strcspn():求字符串互补跨度(长度)

C语言 size_t strcspn(const char* str, const char* reject) 函数用来返回从字符串 str 开头算起,连续有几个字符都不在 reject 中;也就是说,str 中连续有几个字符和 reject 没有交集。

strcspn 是 string complementary span 的缩写,意思是“字符串互补跨度(长度)”。

我们也可以换个角度看,strcspn() 返回的是 str 中第一次出现 reject 中字符的位置。

头文件:string.h

语法/原型:

size_t strcspn(const char* str, const char* reject);

参数说明:
返回值:返回从字符串 str 开头算起,连续不在 reject 中的字符的个数;也可以理解为,str 中第一次出现 reject 中字符的位置。

【实例】演示C语言 strcspn() 函数的用法。
#include <stdio.h>
#include <string.h>

int main(){
    char str[50] = { "http://c.biancheng.net" };
    char keys[50] = { "?.,:\"\'-!" };
    int i = strcspn(str, keys);
    printf("The firsr punctuation in str is at position %d.\n", i);

    return 0;
}
运行结果:
The firsr punctuation in str is at position 4.

所有教程

优秀文章