首页 > 问答 > 正文
<?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);什么原因