轉換的www
所有出現在字符串http://www
我已經試過文本轉換網址鏈接到可點擊的鏈接
正則表達式:/^www(?!http\:\/\/|https\:\/\/)./g;
但它在工作的情況下,只有當任何字符或數字不先WWW。例如:Find me at www.test.com
在這種情況下,它失敗,但它的工作爲www.google.com find me on this
。我不知道如何把這個條件放在正常的exp中。
function mailify(text)
{
var regEx = /^www(?!http\:\/\/|https\:\/\/)/g;
return text.replace(regEx, "http://www");
}
console.log(mailify("[email protected]"));
親愛的它也會將http:// www替換成http:// http:// http:www –