The normalizedString datatype is derived from the string type : normalizedString « XML Schema « XML Tutorial






<!-- schema -->
<xsd:element name="myString">
  <xsd:simpleType>
   <xsd:restriction base="xsd:normalizedString">
    <xsd:maxLength value="50"/>
   </xsd:restriction>
  </xsd:simpleType>
</xsd:element>

<!-- instance document -->
<myString>Heres one. </myString>








3.37.normalizedString
3.37.1.The normalizedString datatype is derived from the string type