Maison >développement back-end >tutoriel php >正则匹配指定长度的数字要如何写
正则匹配指定长度的数字要怎么写?
$str=1234567890<td>1234567890123</td><td>0987654321</td><td>3210987654321</td><td>1324354657</td><td>1324354657689</td>htm;preg_match('/(<td>[\d]{10})/',$str,$match);print_R ($match[1]);<br><font color="#e78608">------解决方案--------------------</font><br><dl class="code">PHP code<pre class="brush:php;toolbar:false"><?php $str=<<<htm<td>1234567890
preg_match_all('/<td>(\d{10}\b)/',$str,$matchs);print_r ($matchs);<br><font color="#e78608">------解决方案--------------------</font><br>把函数改成 preg_match_all 就行了<br><br>preg_match_all('/(</td><td>[\d]{10})/',$str,$match);<br><br><div class="clear"> </div> </td>