$str=" 【<strong>中药名</strong>】艾叶 aiye</p>";
preg_match('/【<strong>中药名<\/strong>】(.*)<\/p>/iUs',$str,$match1);
$str=" 【<strong>中药名</strong>】艾叶 aiye</p>";preg_match('/【中药名<\/strong>】(.*)<\/p>/iUs',$str,$match1);print_r($match1);
Array( [0] => 【<strong>中药名</strong>】艾叶 aiye</p> [1] => 艾叶 aiye)
$str=" 【<strong>中药名</strong>】艾叶 aiye</p>";preg_match('/【中药名<\/strong>】.*(\w+)<\/p>/iUs',$str,$match1);print_r($match1);
Array( [0] => 【<strong>中药名</strong>】艾叶 aiye</p> [1] => aiye)
多谢谢,可能是编码的问题,
可以采集了