JS Validation IP:Port

前端 未结 5 1021
既然无缘
既然无缘 2020-12-06 22:09

I have a question, on how to validate IP:Port together. example:

192.158.2.10:80 <--Valid

192.158.2.10 <---Invalid

So the port is a must, I fo

5条回答
  •  余生分开走
    2020-12-06 22:41

    Perhaps this might work. It did in my preliminary tests

    var id = '192.158.2.10:80'; // passes - true
    // var id = '192.158.2.10'; // fails - false
    
    /^(?:[0-9]{1,3}\.){3}[0-9]{1,3}\:[0-9]{1,3}$/.test(id);
    

提交回复
热议问题