xs:whiteSpace defines the way to handle whitespaces : whiteSpace « XML Schema « XML






xs:whiteSpace defines the way to handle whitespaces


i.e., #x20 (space), #x9 (tab), #xA (linefeed), and #xD (carriage return)

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
  targetNamespace="http://www.java2s.com" 
  xmlns="http://www.java2s.com"
  elementFormDefault="qualified">
  <xs:simpleType name="CapitalizedNameWS">
    <xs:restriction base="xs:string">
      <xs:whiteSpace value="collapse" />
      <xs:pattern value="([A-Z]([a-z]*) ?)+" />
    </xs:restriction>
  </xs:simpleType>
</xs:schema>

 








Related examples in the same category

1.xs:whiteSpace defines whitespace and can expand the set of accepted instance documents during a "restriction,"