求一PHP正则表达式,在线等 正则提取出table或tr标签,如:,标签属性不固定,有多少就要多少, 在线等,谢谢------解决方案--------------------preg_match_all再用str_replace------解决方案--------------------PHP code$str = eof;preg_match_all('#]+(?=")[^>]+>#is',$str,$m); print_r($m[0]);