Home >Backend Development >PHP Tutorial >关于一个preg_replace 正则表达式 替换的有关问题

关于一个preg_replace 正则表达式 替换的有关问题

WBOY
WBOYOriginal
2016-06-13 10:15:07905browse

关于一个preg_replace 正则表达式 替换的问题
最近做新浪应用
[email protected] 替换为@example

在别人的帮助下写了一段正则表达式

 

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> $t = preg_replace( "/ *@([\x{4e00}-\x{9fa5}A-Za-z0-9_]*) ?/u", " <a href="%5C%22http://t.sina.com.cn/n/%5C%5C1%5C%22" target='\"_blank\"'>@\\1</a> ", $t);


发现如果是正常的微博昵称 就替换正常

但是一旦遇到“@-example”

之类的,有“-”的昵称,就会自动在“-”前面加一个空格 ,变成@ -example

请问各位大侠,问题出在哪里?

谢谢~\(≧▽≦)/~啦啦啦

------解决方案--------------------
([\x{4e00}-\x{9fa5}A-Za-z0-9_]*)
这里面不包括-

添加进去就是了
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