How to replace plain URLs with links?

前端 未结 24 2287
生来不讨喜
生来不讨喜 2020-11-21 05:42

I am using the function below to match URLs inside a given text and replace them for HTML links. The regular expression is working great, but currently I am only replacing t

24条回答
  •  粉色の甜心
    2020-11-21 05:53

    I had to do the opposite, and make html links into just the URL, but I modified your regex and it works like a charm, thanks :)

    var exp = /.*<\/a>/ig;
    
    source = source.replace(exp,"$1");
    

提交回复
热议问题