- 论坛徽章:
- 0
|
正则看着晕
要求是替换不带[]的字符,但是按照下面的写法,空格会被认为是字符的开始
- <?php
- $content = "[中文]2 阿嫂 [ 不单 ]";
- $tags = array("中文", "阿嫂", "不单");
-
-
- function Tags_Replace($string, $aWords, $sChrReplace) {
- ksort($aWords);
- foreach ($aWords as $key => $word) {
- // Regexp for case-insensitive and use the functions
- $aWords[$key] = "/[^[]({$word})[^]]?/ie";
- }
- // to substitue badwords for definite character
- return preg_replace( $aWords, "{$sChrReplace}", $string );
- }
- // To show modifications
- echo Tags_Replace($content, $tags, '"<a href=\"/tag.php?tag=".urlencode(\1)."\" target=\"_blank\">\1</a>"');
- ?>
复制代码
输出是这样
- [中文]2  <a href="/tag.php?tag=%B0%A2%C9%A9" target="_blank">阿嫂</a>nbsp; [ <a href="/tag.php?tag=%B2%BB%B5%A5" target="_blank">不单</a> ]
复制代码
请问这段到底应该怎么写
- $aWords[$key] = "/[^\[]({$word})[^]]?/ie";
复制代码 |
|