首頁 > 問答 > 主體
<?php $str='hello wehe fasdsf sdff coming sf being';$reg='/\b\w (?!ing\b)/';//無法達到預期效果//$reg='/\b\w (?=ing\b)/';//可以達到預期效果,結果: com bepreg_match_all($reg, $str, $res) ;print_r($res);什麼原因