Skip to content

Instantly share code, notes, and snippets.

@jamesdube
Last active February 5, 2024 14:29
Show Gist options
  • Save jamesdube/479842b73044b88bbb1399b52ceb92f5 to your computer and use it in GitHub Desktop.
Save jamesdube/479842b73044b88bbb1399b52ceb92f5 to your computer and use it in GitHub Desktop.
Zimbabwe National ID Regex
# 00000000X00
/([0-9]{8,9}[a-z,A-Z][0-9]{2})/g
# 00-000000-X-00 dashes are optional
/([0-9]{2}-?[0-9]{6,7}-?[a-z,A-Z]-?[0-9]{2})/g
# 00-000000 X00 dash is required, space before letter is optional
/([0-9]{2}-[0-9]{6,7}\s?[a-z,A-Z][0-9]{2})/g
@englontribetron
Copy link

thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment