實例
輸出在字串 "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中文網其他相關文章!