I’m validating a form via an XML schema, and I get this error:
[facet 'pattern'] The value '12' is not accepted by the pattern '\d{10}'
What does \d{10} mean? Where can I go to learn more about pattern facets?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
\d{10}means you should have 10 characters matching any decimal digit (including [0-9])