定期体验域名

时间:2017-07-05 08:44:30

标签: javascript regex

有人可以告诉正则表达式:

anytext.com
anytext.org
anytext.net
anytext.mil
anytext.gov

要求是给出的任何文字,但这些域名(org,net,com,gov,mit)应无效。

当然,我正在给这个正常的表达式,它不起作用:

/^[\w-\.]+.(?com)(?org)(?mil)(?net)(?edu)(?gov)?$/

1 个答案:

答案 0 :(得分:2)

这应该适合你:

var regexp = /^[A-Za-z0-9-\.]+\.(com|org|mil|net|gov)$/

console.log('anytext.com', regexp.test('anytext.com'))