- 论坛徽章:
- 0
|
php正则问题求助?
$tmp = '<td>45679</td><td width="17%" height="28" class="border"><a href="http://mp3.baidu.com/m?tn=baidump3&ct=134217728&lm=-1&li=500&word=%B9%FA%BC%D2+%B3%C9%C1%FA%2B%C1%F5%E6%C2%E6%C2" target="_blank">国家</a> (<a href="http://mp3.baidu.com/m?tn=baidump3&ct=134217728&lm=-1&li=500&word=%B3%C9%C1%FA" target="_blank">成龙</a>/<a href="http://mp3.baidu.com/m?tn=baidump3&ct=134217728&lm=-1&li=500&word=%C1%F5%E6%C2%E6%C2" target="_blank">刘媛媛</a>)</td><td width="3%" height="28" class="border">2</td>';
preg_match_all("'<\s*td[^>]*?>(\d*?[\\.|\S*])</td>'si", $tmp, $song);
print_r($song);exit;
现在想匹配出<td .*?>这里不是数字</td> 这样的数据?
大家指点一下 |
|