function replaceURLToLink(text) { const reg = /((http|https):\/\/[\w.\/]+)(?![^<]+>)/gi return text.replace(reg,"<a href='$1' target='_blank'>$1</a>") } // 目前这个只能匹配到http(s)://www.baidu.com,对于http://baidu.com/index/search?keyword=123这种格式的如何优化?
添加回答
举报
0/150
提交
取消