I am using the code inXML scehma to represent my phone number which is like this:
ABC-JHG
I am getting an error like: values Abc-JHG is not allowe开发者_开发知识库d for element Name.
How should I make it comaptile with my input.
\d
is only for numbers, change the second two to \w
.
Use a regular expression that allows non-numeric data.
精彩评论