實例
在字串中搜尋字元"oe",並傳回字串中從指定字元第一次出現的位置開始的剩餘部分:
<?php echo strpbrk("Hello world!","oe"); ?>
定義和用法
strpbrk() 函數在字串中搜尋指定字元中的任一個。
註解:此函數是區分大小寫的。
此函數傳回指定字元第一次出現的位置開始的剩餘部分。如果沒有找到,則傳回 FALSE。
語法
strpbrk(string,charlist)
參數 | #描述 |
string | 必需。規定被搜尋的字串。 |
charlist | 必要。規定要找的字元。 |
技術細節
#傳回值: | 傳回從所尋找的字元開始的字符串。如果沒有找到,則傳回 FALSE。 |
PHP 版本: | 5+ |
更多實例
實例1
此函數是區分大小寫的("W" 和"w" 輸出相同):
<?php echo strpbrk("Hello world!","W"); echo "<br>"; echo strpbrk("Hello world!","w"); ?>
範例
/* STRPBRK.C */ #include <string.h> #include <stdio.h> void main( void ) { char string[100] = "The 3 men and 2 boys ate 5 pigs\n"; char *result; /* Return pointer to first 'a' or 'b' in "string" */ printf( "1: %s\n", string ); result = strpbrk( string, "0123456789" ); printf( "2: %s\n", result++ ); result = strpbrk( result, "0123456789" ); printf( "3: %s\n", result++ ); result = strpbrk( result, "0123456789" ); printf( "4: %s\n", result ); }
輸出:
1: The 3 men and 2 boys ate 5 pigs 2: 3 men and 2 boys ate 5 pigs 3: 2 boys ate 5 pigs 4: 5 pigs
以上是php在字串中搜尋指定字元中的任意一個的函數strpbrk()的詳細內容。更多資訊請關注PHP中文網其他相關文章!