[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: Personal reply to Edd Dumbill's XML Hack Article wrt W3C XML Schema
- From: Gavin Thomas Nicol <gtn@ebt.com>
- To: XML DEV <xml-dev@lists.xml.org>
- Date: Tue, 13 Mar 2001 03:04:41 -0500
> <foo>
> <value>45.67</value>
> </foo>
>
> What you are saying is that someone might want to treat "value"
> directly as something other than a floating point number?
Hmm. Looks kind of like a regex to me... I guess
<foo>
should be interpreted as meaning "regular expression" and
<value>
as the regex pattern? That means that "45.67" could match
45A67
then? In that case, what does
<foo>
<value>45.67</value>
<value>23.12</value>
</foo>
mean?