strcspn 在某字符串中匹配指定字符串

头文件

#include <string.h>

语法

size_t strcspn( const char *str1, const char *str2 );

功能

函数返回 str1 开头连续 n 个字符都不含字符串 str2 内字符的字符数。即在 str1 中从左开始不包含 str2 中字符的字符个数。

示例

查找字符串“1234567890”中,左边连续有几个字符不在“747DC8”字符串中。代码如下:

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

int main(void)
 {
    char *string1 = "1234567890";
    char *string2 = "747DC8";
    int length;

    length = strcspn(string1, string2);
    printf("Character where strings intersect is at position %d\n", length);

    return 0;
 }

输出结果:

Character where strings intersect is at position 3
关于
本网站专注于 Java、数据库(MySQL、Oracle)、Linux、软件架构及大数据等多领域技术知识分享。涵盖丰富的原创与精选技术文章,助力技术传播与交流。无论是技术新手渴望入门,还是资深开发者寻求进阶,这里都能为您提供深度见解与实用经验,让复杂编码变得轻松易懂,携手共赴技术提升新高度。如有侵权,请来信告知:hxstrive@outlook.com
公众号