1
我正在開發一個Twitter程序,並且被困在如何用html元素替換單詞。例如:用html元素替換單詞
替換: Hello #World, This is a Tweet!
有了:Hello <a href="">#World</a>, this is a Tweet!
我知道,你可以在replace()
使用正則表達式,但我不確定如何引用到匹配的字符串中的replace()
第二個參數後
謝謝!
我正在開發一個Twitter程序,並且被困在如何用html元素替換單詞。例如:用html元素替換單詞
替換: Hello #World, This is a Tweet!
有了:Hello <a href="">#World</a>, this is a Tweet!
我知道,你可以在replace()
使用正則表達式,但我不確定如何引用到匹配的字符串中的replace()
第二個參數後
謝謝!
您可以使用此正則表達式
str="Hello #World"
str.replace(/#(\S*)/g,'<a href="">$1</a>');