实例

输出在字符串 "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编译运行:

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

以上就是php返回在字符串中查找到任何指定的字符之前的字符数函数strcspn()的详细内容,更多请关注Work网其它相关文章!

09-16 03:03