84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
strstr获取指定字符之后的所有字符串,其中是包含那个指定字符的,求个不包含指定字符的方法
ringa_lee
可以这样做(参考)
<?php $allString = "I love Shanghai 123456!"; $searchString = "Shanghai"; $newString = strstr($allString, $searchString); $length = strlen($searchString); echo substr($newString, $length);
或者
<?php $allString = "I love Shanghai 123456!"; $searchString = "Shanghai"; $firstLength = strpos($allString, $searchString); $length = $firstLength + strlen($searchString); echo substr($allString, $length);
使用正则匹配:
<?php $allString = "I love Chongqing 123456!"; preg_match("/Chongqing(?<right>.*)/", $allString, $matches); print_r($matches);
其中,right只是给匹配的结果命名,最终输出:
Array ( [0] => Chongqing 123456! [right] => 123456! [1] => 123456! )
$str = 'I love guangdong 123456!'; $strDelimiter = 'guangdong'; var_dump(preg_split('/'.preg_quote($strDelimiter,'/').'/',$str)); # 如果确定strDelimiter只出现一次 var_dump(strrev(strstr(strrev($str),strrev($strDelimiter),true))); # 替换 var_dump(preg_replace('/.+?'.preg_quote($strDelimiter,'/').'/','',$str));
可以这样做(参考)
或者
使用正则匹配:
其中,right只是给匹配的结果命名,最终输出: