OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [xml-dev] Facet of simpleType



Because all the facets apart from pattern work on the value space of a type
rather than the lexical space of a type there is no way to do this with
facets such as totalDigits because the lexical forms 12345 and 000000012345
map to the same point in the value space. Pattern works on the lexical space
so you could say

    <xsd:simpleType name='Only8Digits'>
      <xsd:restriction base='xsd:decimal' >
        <xsd:pattern value='[0-9]{8}'/>
      </xsd:restriction>
    </xsd:simpleType>

Regards

Martin Gudgin
DevelopMentor
http://www.develop.co.uk


----- Original Message -----
From: "Auguste Oumar" <oumar_a@yahoo.de>
To: <xml-dev@lists.xml.org>
Sent: Thursday, September 13, 2001 3:38 PM
Subject: [xml-dev] Facet of simpleType


> Hi,
> i would like to define an element in xml-schema which
> accept only numbers and have a fixed length.When i
> defined the element als restriction of decimal or
> integer with the facet totalDigits="8" for example, it
> still accept content longer than "8" when they have
> leading zero "0".Any idea of how i can prevent it?
>
> Thanks for helps.
>
> Auguste.
>
>
> __________________________________________________________________
> Do You Yahoo!?
> Gesendet von Yahoo! Mail - http://mail.yahoo.de
>
> -----------------------------------------------------------------
> The xml-dev list is sponsored by XML.org <http://www.xml.org>, an
> initiative of OASIS <http://www.oasis-open.org>
>
> The list archives are at http://lists.xml.org/archives/xml-dev/
>
> To subscribe or unsubscribe from this elist use the subscription
> manager: <http://lists.xml.org/ob/adm.pl>