Sample xsd
<xsd:simpleType name="test">
<xsd:restriction base="xsd:token">
<xsd:pattern value="[a-zA-Z0-9\-]{1,17}"/>
</xsd:restriction>
</xsd:simpleType>
how do i change this pattern to block zero. (is it possible)
more info:
0 should not be allowed
00 ,000,0000 etc should not be allowed
10 valid and should be allowed
010,0xff,0abc? Are they valid? – m.buettner Nov 19 '12 at 9:53