关于一个preg_replace 正则表达式 替换的问题
最近做新浪应用
要把@example 替换为<a href="http://weibo.com/n/example">@example</a>
在别人的帮助下写了一段正则表达式
$t = preg_replace( "/ *@([\x{4e00}-\x{9fa5}A-Za-z0-9_]*) ?/u", " <a href=\"http://t.sina.com.cn/n/\\1\" target=\"_blank\">@\\1</a> ", $t);