php怎么写获取两个标签内的内容的正则表达式啊?

<?php
$url= "
http://www.xxx.com
";//页面地址
$info=file_get_contents($url);//获取页面信息
?>
请教,没学过php,但临时要用一下,
我要获取那个网页从
<TD align="left" colSpan="4">
到</TD>之间的内容,但是preg_match和正则表达式我不会写。
麻烦大家了
最新回答
路无归

2021-01-30 00:28:55

<?php
/*PHP正则提取图片img标记中的任意属性*/
$str = '<center><img src="/uploads/images/20100516000.jpg" height="120" width="120"><br />PHP正则提取或更改图片img标记中的任意属性</center>';
//1、取整个图片代码
preg_match('/<\s*img\s+[^>]*?src\s*=\s*(\'|\")(.*?)\\1[^>]*?\/?\s*>/i',$str,$match);
echo $match[0];
//2、取width
preg_match('/<img.+(width=\"?\d*\"?).+>/i',$str,$match);
echo $match[1];
//3、取height
preg_match('/<img.+(height=\"?\d*\"?).+>/i',$str,$match);
echo $match[1];
//4、取src
preg_match('/<img.+src=\"?(.+\.(jpg|gif|bmp|bnp|png))\"?.+>/i',$str,$match);
echo $match[1];
/*PHP正则替换图片img标记中的任意属性*/
//1、将src="/uploads/images/20100516000.jpg"替换为src="/uploads/uc/images/20100516000.jpg")
print preg_replace('/(<img.+src=\"?.+)(images\/)(.+\.(jpg|gif|bmp|bnp|png)\"?.+>)/i',"\${1}uc/images/\${3}",$str);
echo "<hr/>";
//2、将src="/uploads/images/20100516000.jpg"替换为src="/uploads/uc/images/20100516000.jpg",并省去宽和高
print preg_replace('/(<img).+(src=\"?.+)images\/(.+\.(jpg|gif|bmp|bnp|png)\"?).+>/i',"\${1} \${2}uc/images/\${3}>",$str);
?>
少女心泛滥

2022-06-19 00:00:05

正则代码如下:

<?php

//HTML代码
$str = '<font color="#FF00000">红色</font>';

//正则匹配
preg_match_all('/<.*?>(.*?)<\/.*?>/is',$str,$array);

print_r($array);

?>

详细的正则规则,可以百度一下相关资料。
青青草原杠把子

2023-12-22 05:58:45

正则代码如下:
<?php
//HTML代码
$str
=
'<font
color="#FF00000">红色</font>';
//正则匹配
preg_match_all('/<.*?>(.*?)<\/.*?>/is',$str,$array);
print_r($array);
?>
详细的正则规则,可以百度一下相关资料。
捣碎幻觉

2023-07-28 21:14:05

$str = '<td>test</td>';
preg_match('/<td[^>]*>([^<]*)<\/td>/i', $str, $_match);
echo $_match[1];
偏执的浪漫

2020-07-30 06:40:31

\<TD.*\>(\w*)\<\/TD\>