C++ 中的strcspn() 函数采用两个以空结尾的字节字符串:dest 和src 作为其参数,并在dest 中搜索src 中存在的任何字符。
strcspn()原型
size_t strcspn( const char *dest, const char *src );
如果 src
或 dest
不指向以空结尾的字节字符串,则 strcspn()
函数的行为未定义。
它在<cstring> 头文件中定义。
参数:
dest
:指向要搜索的空终止字符串的指针。src
:指向包含要搜索的字符的空终止字符串的指针。
返回:
strcspn()
函数返回 dest
中第一次出现 src
中存在的任何字符之前的字符数。
示例:strcspn() 函数的工作原理
#include <cstring>
#include <iostream>
using namespace std;
int main()
{
char num[] = "0123456789";
char code[] = "ceQasieoLPqa4xz10Iyq";
size_t result = strcspn(code, num);
if (result < strlen(code))
cout << "First occurrence of number in " << code << " is at position " << result;
else
cout << code << " does not contain numbers";
return 0;
}
运行程序时,输出将是:
First occurrence of number in ceQasieoLPqa4xz10Iyq is at position 12
相关用法
- C++ strcspn()用法及代码示例
- C++ strchr()用法及代码示例
- C++ strcat()用法及代码示例
- C++ strcat() vs strncat()用法及代码示例
- C++ strcmp()用法及代码示例
- C++ strcpy()用法及代码示例
- C++ strcoll()用法及代码示例
- C++ string::length()用法及代码示例
- C++ string::npos用法及代码示例
- C++ strncat()用法及代码示例
- C++ strstr()用法及代码示例
- C++ strtok()用法及代码示例
- C++ strtod()用法及代码示例
- C++ strtoimax()用法及代码示例
- C++ strpbrk()用法及代码示例
- C++ strxfrm()用法及代码示例
- C++ strspn()用法及代码示例
- C++ strncmp()用法及代码示例
- C++ strtoull()用法及代码示例
- C++ string at()用法及代码示例
注:本文由纯净天空筛选整理自 C++ strcspn()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。