Chinaunix

标题: 正则表达式问题 [打印本页]

作者: erwolf    时间: 2006-10-24 11:09
标题: 正则表达式问题
<html><head></head><body><div style="font-family: sans-serif">
<p><font size=+1>Google 资讯快讯:<b>明星</b></font></p>
<p style="width:600px">

我现在想匹配以上内容中“明星” 这个词,写了这样一个匹配模式
<p><font size=+1>Google 资讯快讯:<b>(.*)</b></font></p>

可是匹配结果是空的
作者: yueliangdao0608    时间: 2006-10-24 11:12
<p><font size=+1>Google 资讯快讯:<b>(.){2}</b></font></p>
作者: erwolf    时间: 2006-10-24 11:15
爱楼上的方法试了,匹配结果还是空的
作者: xyqdy    时间: 2006-10-24 11:34
<p><font size\=\+1>Google 资讯快讯:<b>([^<]*)<\/b><\/font><\/p>

将一些特殊字符加\
试试看
作者: kls    时间: 2006-10-24 15:59
$str = "<html><head></head><body><div style=\"font-family: sans-serif\">
<p><font size=+1>Google 资讯快讯:<b>明星</b></font></p>
<p style=\"width:600px\">
";

$pattern="/<b>.*<\/b>/is"; preg_match($pattern,$str,$out);
print_r($out);
作者: Namelessxp    时间: 2006-10-24 16:48

  1. <?php
  2. $content = <<<DDD
  3. <html><head></head><body><div style="font-family: sans-serif">
  4. <p><font size=+1>Google 资讯快讯:<b>明星</b></font></p>
  5. <p style="width:600px">
  6. DDD;
  7. preg_match_all("/<p><font\s+?size=\+\d>.*?<b>(.+?)<\/b><\/font><\/p>/is",$content,$matches);
  8. var_dump($matches);
  9. ?>
复制代码

作者: erwolf    时间: 2006-10-24 17:30
谢谢各位,果然是特殊字符的原因。现在问题已经搞定了
作者: HonestQiao    时间: 2006-10-26 11:23
正则包含中文,需要使用utf8




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2