Home >Backend Development >PHP Tutorial >正则采东西,是中文有问题有(帮着老师做项目,若此难不除,将无法评奖学金,谢谢)

正则采东西,是中文有问题有(帮着老师做项目,若此难不除,将无法评奖学金,谢谢)

WBOY
WBOYOriginal
2016-06-23 13:57:14943browse

$str=" 【<strong>中药名</strong>】艾叶 aiye</p>";

如同上述代码片段的字符串共有1265个。
有二问:
1.采集出 艾叶 aiye,我的代码如下,为何不行啊?内容为空。
	preg_match('/【<strong>中药名<\/strong>】(.*)<\/p>/iUs',$str,$match1);

2.我要采集出其中的aiye就是英文部分,其他不要,如何写代码。


回复讨论(解决方案)

$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)

多谢谢,可能是编码的问题,
可以采集了

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn