2012-06-16 52 views
4

開頭如果一個字符串以另一個字符串開頭,我正在尋找正則表達式。這必須是正則表達式,它必須是PHP正則表達式。簡單的PHP正則表達式字符串以

任何幫助表示讚賞。感謝 問候

+1

相關主題 - http://stackoverflow.com/questions/834303/php-startswith-and-endswith-functions – adatapost

+1

沒有真正相關。問題特別要求「正則表達式」解決方案。 – Slappy

回答

8
$result = preg_match("#^startText(.*)$#i", $string); 
if($result == 0) 
{ 
    echo "No match"; 
} 
else 
{ 
    echo "Match found."; 
} 

PHP.net Regular Expressions

preg_match返回或者0因爲沒有找到的匹配,或1,因爲在第一場比賽preg_match停止。如果要計算所有匹配項,請使用preg_match_all

如果您有更多麻煩,請檢查PHP網站。