php傳回在字串中查找到任何指定的字元之前的字元數函數strcspn()

黄舟
發布: 2023-03-17 06:22:02
原創
2742 人瀏覽過

實例

輸出在字串 "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()

以上是php傳回在字串中查找到任何指定的字元之前的字元數函數strcspn()的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板