We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using the following in data.json { "key":"contact", "type":"edit_text", "hint":"Contact", "v_reg" : { "value" : "^[789]\d{9}$", "err" : "Enter a valid contact number." } }, { "key":"postal_code", "type":"edit_text", "hint":"Postal Code", "v_email":{"value":"^\d{3}\s?\d{3}$", "err":"Invalid Zip Code" } }, { "key":"employee_id", "type":"edit_text", "hint":"Employee Number", "v_email":{"value":"^[0-9]{4}$", "err":"Enter a 4 digit Employee ID" } }
But the reg exp is not getting validated. Can someone please help?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using the following in data.json
{
"key":"contact",
"type":"edit_text",
"hint":"Contact",
"v_reg" : {
"value" : "^[789]\d{9}$",
"err" : "Enter a valid contact number."
}
},
{
"key":"postal_code",
"type":"edit_text",
"hint":"Postal Code",
"v_email":{"value":"^\d{3}\s?\d{3}$",
"err":"Invalid Zip Code"
}
},
{
"key":"employee_id",
"type":"edit_text",
"hint":"Employee Number",
"v_email":{"value":"^[0-9]{4}$",
"err":"Enter a 4 digit Employee ID"
}
}
But the reg exp is not getting validated.
Can someone please help?
The text was updated successfully, but these errors were encountered: