php pre_replace() 高亮显示文字

mycoolaccount 2012-12-04 04:04:36

希望在下面的文字当中高亮显示单词in

in the rooming, he got into the room, when he's ordered an inexpensive.

我是这样写的,但是连into,inexpensive, rooming,中的in 都高亮显示了;而且空格都没有了。

$pttn = "<span style='color:red'>$newrow</span>";

$str = preg_replace("/\s($newrow)\s/i",$pttn,$str);

如何写才能只显示in,而不会吧into,inexpensive, rooming,中的in也高亮??
...全文
518 10 打赏 收藏 转发到动态 举报
写回复
用AI写文章
10 条回复
切换为时间正序
请发表友善的回复…
发表回复
mycoolaccount 2013-01-13
  • 打赏
  • 举报
回复
学习学习了,谢谢
  • 打赏
  • 举报
回复
如果要精确地查找in这个单词的话,应该使用\bin\b。,即1楼的那样 你可以看下正则表达式入门教程http://deerchao.net/tutorials/regex/regex.htm中的 《4,入门》有你这样的例子,
xuzuning 2012-12-06
  • 打赏
  • 举报
回复
引用 6 楼 mycoolaccount 的回复:
我想问下我一直不理解的问题: \\1 \\2 \\3和 $1的本质意思是什么?
正则表达式规则串中的“()”每一对表示一个向后引用,即可被后面的规则使用。同时也会出现在结果中 既然可以用,那么就需要知道哪个对哪个。所以规定了按出现的次序从1开始算起 在规则串中 \\1 表示第一对()中匹配到的内容 在结果中就用 \1 表示第一对()中匹配到的内容 至于表示成 $1 是因为 js 中是这样表示的,所以 php 也允许这样写 写 web 应用总是离不开 php、js、html 的,相似的语法成分用相似书写方式,不是黑自然的吗
mycoolaccount 2012-12-06
  • 打赏
  • 举报
回复
还有是,我不太明白2楼提出来的如果出现 \s 的情况?
mycoolaccount 2012-12-06
  • 打赏
  • 举报
回复
我想问下我一直不理解的问题: \\1 \\2 \\3和 $1的本质意思是什么?
xuzuning 2012-12-05
  • 打赏
  • 举报
回复
$str = "in the rooming, he got into the room, when he's ordered an inexpensive.  \s";
  
$newrow = '\s';  // 这个应该转义
$newrow = preg_quote($newrow);
$pttn = "<span style='color:red'>$newrow</span>";
  
echo $str = preg_replace("/[\s\b]($newrow)\b/i",$pttn, $str);
in the rooming, he got into the room, when he's ordered an inexpensive. <span style='color:red'>\s</span> 为什么是 [\s\b] 而不是 \b 呢?因为 \ 不是单词的构成成分 不过把 \ 作为关键字也是够怪异的
mu_rain 2012-12-05
  • 打赏
  • 举报
回复
碰到 \s 这种保留字,总得要替换吧。  addslashes($newrow); 一下就好了。 一个很怪的事,碰到这种保留字 \s 标红的需求 \b 做边界符就失效了,能解释一下么?
引用 3 楼 xuzuning 的回复:
你是在开玩笑? preg_quote 是做什么的? \s 是正则表达式的保留字,如果作为匹配串则必须转移!
xuzuning 2012-12-04
  • 打赏
  • 举报
回复
你是在开玩笑? preg_quote 是做什么的? \s 是正则表达式的保留字,如果作为匹配串则必须转移!
mu_rain 2012-12-04
  • 打赏
  • 举报
回复
如果只是想做一次实现,楼上版主的回答已完全正确了。 如果想做产品级的开发,就至少需要多考虑一点点特殊情况 例如 \s


$str = "in the rooming, he got into the room, when he's ordered an inexpensive.  \s";
 
$newrow = '\s';  // 这个会换效。
$pttn = "<span style='color:red'>$newrow</span>";
 
echo $str = preg_replace("/\b($newrow)\b/i",$pttn, $str);
我折腾了一下,这样就可以替换 \s 了。


$str = "\s in the rooming, he got into \s the room, when he's ordered an inexpensive.  \s";
        $newrow = "\s";
        $newrow2 = addslashes($newrow);
        $pttn = "<span style='color:red'>$newrow</span>";
         //有一个细节,我也没搞明白 ,这里用 \b 失效了,先把结果输出来。
         echo    $str = preg_replace("/(\s+|^)($newrow2)(\s+|$)/i","\\1".$pttn."\\3", $str);  
xuzuning 2012-12-04
  • 打赏
  • 举报
回复
你这样写并没有错误,会只替换 in,只是要在 in 前面加个空格。 这样写好些
$str = "in the rooming, he got into the room, when he's ordered an inexpensive.";

$newrow = 'in';
$pttn = "<span style='color:red'>$newrow</span>";

echo $str = preg_replace("/\b($newrow)\b/i",$pttn, $str);
<span style='color:red'>in</span> the rooming, he got into the room, when he's ordered an inexpensive. \b 表示单词边界

21,886

社区成员

发帖
与我相关
我的任务
社区描述
从PHP安装配置,PHP入门,PHP基础到PHP应用
社区管理员
  • 基础编程社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧