用链接替换@mention

时间:2013-06-02 03:49:00

标签: javascript jquery regex twitter

我希望使用Javascript或jQuery用<a href="http://twitter.com/mention">@mention</a>替换字符串中的任何@mention。我有How to replace plain URLs with links?的第二个答案中的函数,我只是想添加一个replacePattern

1 个答案:

答案 0 :(得分:8)

function replaceAtMentionsWithLinks ( text ) {
    return text.replace(/@([a-z\d_]+)/ig, '<a href="http://twitter.com/$1">@$1</a>'); 
}

在此处查看:[{3}}