Last active
February 5, 2024 14:29
-
-
Save jamesdube/479842b73044b88bbb1399b52ceb92f5 to your computer and use it in GitHub Desktop.
Zimbabwe National ID Regex
This file contains 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
# 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 |
Makaipa mdhara
Thanks mate
Thanks, just made my day.
Nice one baba.
Thanks. Saved me a couple of hours.
Une yese wangu
const ID = (S(message.text).replaceAll(' ', '').trim().s).toUpperCase(); // const S = require('string')
//Format: 00-00000X00
const re = /^\d{2}\-\d{6,8}[A-Z]{1}\d{2}$/;
if (!re.test(ID)) throw "Invalid Format";
Kuddos
Just made things a whole lot easier.
if you are doing it in Java then
Pattern pattern = Pattern.compile("\d{7,9}[A-Z]{1}\d{2}$");
@OverRide
public void validate(FacesContext facesContext, UIComponent uiComponent, Object o) throws ValidatorException {
log.info("posted id number {}", o.toString());
Matcher matcher = pattern.matcher(o.toString());
if (!matcher.matches()){
FacesMessage msg =
new FacesMessage("Invalid Id Number","Check the id number that you input");
msg.setSeverity(FacesMessage.SEVERITY_ERROR);
throw new ValidatorException(msg);
}
}
thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Makaipa mdhara