3
我有一個正則表達式模式,用於搜索文本文件中的單詞。我如何忽略重複?忽略正則表達式中的重複項
例如,看看這個代碼
$pattern = '/(lorem|ipsum|daboom|pahwal|ababaga)/i';
$num_found = preg_match_all($pattern, $string, $matches);
echo "$num_found match(es) found!";
echo "Matched words: " . implode(',', $matches[0]);
如果我有一個以上的說LOREM在文章中,輸出將是這樣的
5 matches found!
Matched words: daboom,lorem,lorem,lorem,lorem
我想該模式只發現第一次出現,而忽略其餘部分,所以輸出應爲:
2 matches found!
Matched words: daboom,lorem
*拍打額頭*爲什麼我沒有想到這一點? – HyderA 2010-12-22 10:07:28