在 JavaScript 中,可以使用正则表达式来匹配字符串中的链接地址,然后使用 replace() 方法来替换成 a 标签。
例如:
var str = "这是一个链接地址:https://www.example.com";
var pattern = /(https?:\/\/[^\s]+)/g;
var replacement = '<a href="$1">$1</a>';
str = str.replace(pattern, replacement);
console.log(str);
输出结果为: "这是一个链接地址:<a href="https://ww