M
Matthet
Hi,
Is there any difference if I write sth like this:
<xsd:simpleType name="Name">
<xsd:restriction base="xsd:string">
<xsd:minLength value="1">
<xsd:maxLength value="10">
</xsd:restriction>
</xsd:simpleType>
and this:
<xsd:simpleType name="Name">
<xsd:restriction base="xsd:string">
<xsdattern value=".{1,10}">
</xsd:restriction>
</xsd:simpleType>
Thx for any help
MAciek
Is there any difference if I write sth like this:
<xsd:simpleType name="Name">
<xsd:restriction base="xsd:string">
<xsd:minLength value="1">
<xsd:maxLength value="10">
</xsd:restriction>
</xsd:simpleType>
and this:
<xsd:simpleType name="Name">
<xsd:restriction base="xsd:string">
<xsdattern value=".{1,10}">
</xsd:restriction>
</xsd:simpleType>
Thx for any help
MAciek