Skip to content

Instantly share code, notes, and snippets.

@geraintwhite
Created March 24, 2015 16:07
Show Gist options
  • Save geraintwhite/c7834873bcc31a311b8a to your computer and use it in GitHub Desktop.
Save geraintwhite/c7834873bcc31a311b8a to your computer and use it in GitHub Desktop.
ipv4 and ipv6 regex
var ipv4 = /^((1?\d?\d|2([0-4]\d|5[0-5]))(\.|$)){4}$/;
var ipv6 = /^(([0-9a-f]{1,4})(:|$)){8}$/i;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment