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
语法/原型:
返回值:返回从字符串 str 开头算起,连续不在 reject 中的字符的个数;也可以理解为,str 中第一次出现 reject 中字符的位置。
【实例】演示C语言 strcspn() 函数的用法。
The firsr punctuation in str is at position 4.
strcspn 是 string complementary span 的缩写,意思是“字符串互补跨度(长度)”。
我们也可以换个角度看,strcspn() 返回的是 str 中第一次出现 reject 中字符的位置。
头文件:string.h
语法/原型:
size_t strcspn(const char* str, const char* reject);
参数说明:- str:要检索的字符串。
- reject:该字符串包含了要在 str 中进行匹配的字符列表。
返回值:返回从字符串 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.
所有教程
- socket
- Python基础教程
- C#教程
- MySQL函数
- MySQL
- C语言入门
- C语言专题
- C语言编译器
- C语言编程实例
- GCC编译器
- 数据结构
- C语言项目案例
- C++教程
- OpenCV
- Qt教程
- Unity 3D教程
- UE4
- STL
- Redis
- Android教程
- JavaScript
- PHP
- Mybatis
- Spring Cloud
- Maven
- vi命令
- Spring Boot
- Spring MVC
- Hibernate
- Linux
- Linux命令
- Shell脚本
- Java教程
- 设计模式
- Spring
- Servlet
- Struts2
- Java Swing
- JSP教程
- CSS教程
- TensorFlow
- 区块链
- Go语言教程
- Docker
- 编程笔记
- 资源下载
- 关于我们
- 汇编语言
- 大数据
- 云计算
- VIP视频