<table id="forum_list" cellspacing="0" style="width:760px;"> 匹配这个id!
------最佳解决方案--------------------
$s='你的串';
preg_match('/<table id="forum_list"[^>]*>(.*?)<\/table>/s',$s,$m);
echo $m[1];
------其他解决方案--------------------
/ id="([^"]*)"/
------其他解决方案--------------------
匹配forum_list这个固定ID
------其他解决方案--------------------
匹配forum_list这个固定ID 以及下面的所有内容!
------其他解决方案--------------------
那个id看上去像discuz的
------其他解决方案--------------------
如果是匹配大堆html内容,最好把内容装载进dom,用dom的方式处理dom