免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1971 | 回复: 4
打印 上一主题 下一主题

~~~帮忙看个正则问题~~~ [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-04-15 10:01 |只看该作者 |倒序浏览
正则看着晕

要求是替换不带[]的字符,但是按照下面的写法,空格会被认为是字符的开始


  1. <?php
  2. $content    = "[中文]2&nbsp;&nbsp;阿嫂&nbsp;&nbsp;[&nbsp;不单&nbsp;]";
  3.     $tags    = array("中文", "阿嫂", "不单");
  4.    
  5.    
  6. function Tags_Replace($string, $aWords, $sChrReplace) {
  7.     ksort($aWords);
  8.     foreach ($aWords as $key => $word) {
  9.        // Regexp for case-insensitive and use the functions
  10.        $aWords[$key] = "/[^[]({$word})[^]]?/ie";
  11.    }
  12.    // to substitue badwords for definite character
  13.    return preg_replace( $aWords, "{$sChrReplace}", $string );

  14. }

  15. // To show modifications
  16. echo Tags_Replace($content, $tags, '"<a href=\"/tag.php?tag=".urlencode(\1)."\" target=\"_blank\">\1</a>"');
  17. ?>
复制代码

输出是这样


  1. [中文]2&nbsp;&nbsp<a href="/tag.php?tag=%B0%A2%C9%A9" target="_blank">阿嫂</a>nbsp;&nbsp;[&nbsp<a href="/tag.php?tag=%B2%BB%B5%A5" target="_blank">不单</a>&nbsp;]
复制代码

请问这段到底应该怎么写


  1. $aWords[$key] = "/[^\[]({$word})[^]]?/ie";
复制代码

论坛徽章:
0
2 [报告]
发表于 2006-04-15 10:09 |只看该作者
你想要得到的输出是什么结果~~

论坛徽章:
0
3 [报告]
发表于 2006-04-16 19:51 |只看该作者
楼主的意思是
  1. [&nbsp;不单&nbsp;]
复制代码
这端不需要被替换掉`  有点难度.

论坛徽章:
0
4 [报告]
发表于 2006-04-17 10:28 |只看该作者
哦,这个是由于空格被替换成html字符了

简而言之就是[中文]不被替换“中文”被替换

论坛徽章:
0
5 [报告]
发表于 2006-04-17 10:30 |只看该作者
“&nbsp;” 被转成 “nbsp;”了,而且不用“&nbsp;”作为空格,连续的空格就会被吃掉
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP