Regular assertion matching problem
爬上墙头等红杏
爬上墙头等红杏 2018-04-29 13:45:05
0
0
1110

<?php
$str='hello wehe fasdsf sdff coming sf being';
$reg='/\b\w (?!ing\b)/';//Unable to meet expectations Effect
//$reg='/\b\w (?=ing\b)/';//Can achieve the expected effect, the result: com be
preg_match_all($reg, $str, $res) ;
print_r($res);
Why


爬上墙头等红杏
爬上墙头等红杏

reply all(0)
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template