-1
我是新來的正則表達式。任何人都可以指向或建議一個正則表達式來驗證一個完全合格的域名(如so - mysite.com)或URL驗證器正則表達式,而不需要協議檢查嗎?Angular 2中的FQDN/URL格式驗證器正則表達式
我是新來的正則表達式。任何人都可以指向或建議一個正則表達式來驗證一個完全合格的域名(如so - mysite.com)或URL驗證器正則表達式,而不需要協議檢查嗎?Angular 2中的FQDN/URL格式驗證器正則表達式
這應該工作:
正則表達式:
/^([a-z0-9-]+\.[a-z0-9]{2,}$)/gm
輸入:
mysite.com
test.net
testing.-com
camels.com.net
輸出:
mysite.com
test.net
的JavaScript代碼:
const regex = /^([a-z0-9-]+\.[a-z0-9]{2,}$)/gm;
const str = `mysite.com
test.net
testing.-com
camels.com.net`;
let m;
while ((m = regex.exec(str)) !== null) {
// This is necessary to avoid infinite loops with zero-width matches
if (m.index === regex.lastIndex) {
regex.lastIndex++;
}
// The result can be accessed through the `m`-variable.
m.forEach((match, groupIndex) => {
console.log(`Found match, group ${groupIndex}: ${match}`);
});
}
/^[a-zA-Z0-9][a-zA-Z0-9-]{1,61}[a-zA-Z0-9]\.[a-zA-Z]{2,}$/