PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

php返回在字符串中查找到任何指定的字符之前的字符数函数strcspn()

黄舟
黄舟 原创
2017-11-04 09:51:32 2575浏览

实例

输出在字符串 "hello world!" 中找到字符 "w" 之前查找的字符数:

<?php
echo strcspn("Hello world!","w");
?>

定义和用法

strcspn() 函数返回在找到任何指定的字符之前,在字符串查找的字符数(包括空格)。

提示: Use the strspn() function to the number of characters found in the string that contains only characters from a specified character list.

注释: This function is binary-safe.

语法

strcspn(string,char,start,length)
参数描述
string必需。规定要搜索的字符串。
char必需。规定要查找的字符。
start可选。规定开始查找的位置。
length可选。规定字符串的长度(搜索多少字符)。

更多实例

实例 1

使用所有的参数来输出在字符串 "Hello world!" 中找到字符 "w" 之前查找的字符数:

<?php
echo strcspn("Hello world!","w",0,6); // The start position is 0 and the length of the search string is 6.
?>

函数功能:以str1为参照,比较字符串str2中的字符是否与str中某个字符相等(也就是检索str2中的字符是否在str1中存在),如果第一次发现相等,则停止并返回在str1中这个匹配相等的字符的索引值,失败则返回str1的长度。
  
返回说明:返回在str1中这个匹配相等的字符的索引值,是一个整数值。

其它说明:暂时无。

实例:

#include <string.h>
#include <stdio.h>
int main()
{
    char *str1="aaaaakkkeeee";  
    char *str2="John,he like writing!"; 

    int inttemp;

    inttemp=strcspn(str1,str2);   //将str2中的每个字符均与str1中的匹配,如果这个字符在str1中出现过,则返回这个字符在str1中的索引值
     printf("The first index of the character both in str1 and str2: %d  ", inttemp);
    return 0;
}

在VC++ 6.0编译运行:

)8@R$(43RH)0C52@`{)(XX8.png

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。