指定された長さの数値に一致する規則的なパターンを記述するにはどうすればよいでしょうか?
<br><font color="#e78608">PHP コード</font> <?php $str=1234567890123 <td>0987654321</td> <td>3210987654321</td> <td>1324354657</td> <td>1324354657689</td> htm; preg_match_all('/(<td>[d]{10}b</td>)/',$str,$match); print_R ($match[1]); <br>
<br><font color="#e78608">PHP コード</font> preg_match_all('/<td>(d{10}b)</td>/',$str,$matchs); print_r ($matchs); <br><dl class="code">------解決策---------<pre class="brush:php;toolbar:false"><br>関数を preg_match_all に変更するだけです<font color="#e78608"> </font>preg_match_all('/(<td>[d]{10}</td>)/',$str,$match);<br><br> <br><br>