我試圖檢查url是否有效。 7,8的檢查返回錯誤的輸出。檢查url是否有效
alert('1: ' + learnRegExp('http://www.google-com.123.com')); // true
alert('2: ' + learnRegExp('http://www.google-com.123')); // false
alert('3: ' + learnRegExp('https://www.google-com.com')); // true
alert('4: ' + learnRegExp('http://google-com.com')); // true
alert('5: ' + learnRegExp('http://google.com')); //true
alert('6: ' + learnRegExp('google.com')); //true
alert('7: ' + learnRegExp('ww.google.com')); //false -> it returns true
alert('8: ' + learnRegExp('www.google.co.il')); //true -> it returns false
alert('9: ' + learnRegExp('http://ww.google.co.il')); //false
alert('10: ' + learnRegExp('https://ww.google.co.il')); //false
function learnRegExp(){
return /((ftp|https?):\/\/)?(www\.)?[a-z0-9\-\.]{3,}\.[a-z]{3}$/
.test(learnRegExp.arguments[0]);
}
請幫我解決它。
任何幫助讚賞!
記住'www'只是一個子域。我不打算在正則表達式中明確地包含它。 –
很多東西都可以成爲一個有效的URL,例如'http:// xyz.mysite.org.ru'我想真正的測試會嘗試並加載它 –
https://gist.github.com/dperini/729294 – naomik