XML Tutorial/XML Schema/normalizedString
Версия от 18:22, 25 мая 2010; (обсуждение)
The normalizedString datatype is derived from the string type
<!-- 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>Here?one. </myString>