Mega Code Archive

 
Categories / XML Tutorial / XML Schema
 

Pattern Constrains the lexical space to literals that must match a defined pattern

<xsd:simpleType name="isbnType">   <xsd:restriction base="xsd:string">    <xsd:pattern value="[0-9]{10}"/>   </xsd:restriction> </xsd:simpleType>