Use decimal : decimal « XML Schema « XML Tutorial

Home
XML Tutorial
1.Introduction
2.Namespace
3.XML Schema
4.XPath
5.XSLT stylesheet
XML Tutorial » XML Schema » decimal 
3.9.2.Use decimal
File: Schema.xml

<?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:element name="population" type="xs:decimal" />

</xs:schema>


File: Data.xml
<?xml version="1.0"?>

<population xmlns="http://www.java2s.com">34.2</population>
3.9.decimal
3.9.1.The decimal data type represents a finite-length sequence of digits separated by a period.
3.9.2.Use decimal
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.