php返回在字符串中包含 charlist 参数中指定的字符数目的函数strspn()
程序员文章站
2022-03-09 12:12:18
...
实例
返回在字符串 "Hello world!" 中包含字符 "kHlleo" 的数目:
<?php echo strspn("Hello world!","kHlleo"); ?>
定义和用法
strspn() 函数返回在字符串中包含 charlist 参数中指定的字符数目。
提示:请使用 strcspn() 函数来返回在找到任何指定的字符之前,在字符串查找的字符数。
注释:该函数是二进制安全的。
语法
strspn(string,charlist,start,length)
参数 | 描述 |
string | 必需。规定被搜索的字符串。 |
charlist | 必需。规定要查找的字符。 |
start | 可选。规定在字符串的何处开始。 |
length | 可选。定义字符串的长度。 |
技术细节
返回值: | 返回在字符串中包含 charlist 参数中指定的字符数目。 |
PHP 版本: | 4+ |
更新日志: | 在 PHP 4.3 中,新增了 start 和 length 参数。 |
更多实例
实例 1
返回在字符串 "abcdefand" 中包含字符 "abc" 的数目:
<?php echo strspn("abcdefand","abc"); ?>
表头文件 #include<string.h>
定义函数 size_t strspn (const char *s,const char * accept);
函数说明 strspn()从参数s 字符串的开头计算连续的字符,而这些字符都完全是accept所指字符串中的字符。简单的说,若strspn()返回的数值为n,则代表字符串s 开头连续有n个字符都是属于字符串accept内的字符。
返回值 返回字符串s开头连续包含字符串accept内的字符数目。
范例
1 #include <string.h> 2 #include <stdio.h> 3 main() 4 { 5 char *str="Linux was first developed for 386/486-based pcs."; 6 printf("%d\n",strspn(str,"Linux")); 7 printf("%d\n",strspn(str,"/-")); 8 printf("%d\n",strspn(str,"1234567890")); 9 } 运行结果: 5 //包含linux字符切 0 // 开始不包含 0 //开始不包含
以上就是php返回在字符串中包含 charlist 参数中指定的字符数目的函数strspn()的详细内容,更多请关注其它相关文章!
下一篇: PHP三元运算符:快还是不快?