XML Tutorial/XML Schema/negativeInteger — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
 
м (1 версия)
 
(нет различий)

Текущая версия на 08:26, 26 мая 2010

The negativeInteger data type is derived from the nonPositiveInteger type.

The value space is the infinite set of integer values less than or equal to ? 
The lexical space is a finite-length sequence of decimal digits preceded by a -.

<!-- schema -->
<xsd:simpleType name="myType">
  <xsd:restriction base="xsd:negativeInteger">
   <xsd:pattern value="-\d{2}"/>
  </xsd:restriction>
</xsd:simpleType>
<!-- instance document -->
<myType>-49</myType>