即使你不合适也不要使用'.*',直到你有更多的RegEx练习.我认为一个很好的解决方案是:
'/]+>([^<]+)<\/a>/i'
注意'/'分隔符 - 您必须在PHP中使用prege的regex函数套件.它看起来像这样:
preg_match_all($pattern, $string, $matches); // matches get stored in '$matches' variable as an array // matches in between the tags will be in $matches[1] print_r($matches);