Created
March 3, 2017 08:44
-
-
Save Underdoge/2d3cf6050235aa2c0a1d7eff5f7bcb98 to your computer and use it in GitHub Desktop.
isIPv4Address
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isIPv4Address(inputString) { | |
return /^([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$/.test(inputString); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment