Hi all,
I don't understand why this regular expression for validation international phone number gives an error when embedded on xml-schema:
<xs:simpleType name="phoneType">
<xs:restriction base="xs:string">
<xs:pattern value="^\+(?:[0-9] ?){6,14}[0-9]$" />
</xs:restriction>
</xs:simpleType>
What's wrong with it? Does support group matching? Why is not supported by Xml Schema ?
Thank you very much.
Indrit