我有一個PHP代碼來檢查字符串內收集的字符串,我的代碼是這樣的:使用正則表達式來檢查特定的字符串
$string = '01122028K,02122028K,03122028M-1';
$search = '03122029M'
echo preg_match('/\b' . $search . '\b/', $string);
它返回TRUE ...
我該怎麼辦與我的正則表達式返回它假,我希望它只返回TRUE當變量$ search中的字符串實際上匹配變量$字符串, 因此$ search =「03122029M」將返回FALSE $ search =「03122029M-1」會返回TRUE
謝謝你
這裏看看http://stackoverflow.com/questions/5752829/regular-expression-for-exact-match-of-a-word – BenB 2013-03-13 17:20:30