php中判斷乙個字串包含另乙個字串的方法

2022-09-29 16:57:17 字數 905 閱讀 2242

第一種方法:用php的strpos程式設計客棧() 函式判斷字串中是否包含某字串的方法

if(strpos('www.jb51.net','jb51') !== false)else

第二種 使用了explode

用explode進行判www.cppcns.com斷php判斷字串的包含**如下:

<?php $name = "001x.gif";

$pan = "x";

$con = explode($pan,$name);

if (count($con)>1):

echo $name."中包含".$pan;

else:

echwrnvsko $name."中沒有包含".$pan;

endif;

?>

第三種strstr

strstr() 函式搜尋乙個字串在另乙個字串中的第一次出現。

該函式返回字串的其餘部分(從匹配點)。如果未找到所搜尋的字串,則返回 false。

**如下:

<?php /*如手冊上的舉例*/

$email wrnvsk= '[email protected]';

$domain = strstr($email, '@');

echo $domain;

// prints @example.com

?>

第四種、stristr

stristr() 函式查詢字串在另乙個字串中第一次出現的位置。

如果成功,則返回字串的其餘部分(從匹配點)。如果沒有找到該字串,則返回 false。

它和strstr的使用方法完全一樣.唯一的區別是stristr不程式設計客棧區分大小寫.

本文標題: php中判斷乙個字串包含另乙個字串的方法

本文位址:

php判斷乙個字串包含另乙個字串

a 58252,58253 如果 a 中存在 b,則為 true 否則為 false。b 58253 if strpos a,b false else 查詢字串在陣列中出現的次數 array array 1,hello 1,world hello 11 計算 string在 array 需為陣列 中...

c 判斷乙個字串是否包含另乙個字串

c 開發過程中針對字串string型別的操作是常見操作,有時候需要判斷某個字串是否包含在另乙個字串,此時可以使用indexof方法以及contain方法來實現此功能,contain方法返回true和false,而indexof方法可以返回所在的索引位置,如果為查詢到對應的字串,則返回 1。c 中字串...

indexOf判斷乙個字串是否包含另乙個字串

jdk中的表述如下 indexof public int indexof string str 返回指定子字串在此字串中第一次出現處的索引。返回的整數是 this.startswith str,k 為 true 的最小 k 值。引數 str 任意字串。返回 如果字串引數作為乙個子字串在此物件中出現,...