Skip to content

Instantly share code, notes, and snippets.

@weeksdev
Last active January 2, 2016 10:38
Show Gist options
  • Save weeksdev/8291010 to your computer and use it in GitHub Desktop.
Save weeksdev/8291010 to your computer and use it in GitHub Desktop.
RegEx: SSN
999-99-9999(SSN)
^(?!(000|666|9))\d{3}-(?!00)\d{2}-(?!0000)\d{4}$
99-9999999(Tax-Id)
@"^(?!(000|666|9))\d{2}-(?!00)\d{7}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment