Re: Erratum E2-43: invalid pattern

"Sandy Gao" <sandygao@ca.ibm.com> writes:

> In E2-43, a pattern was added to the "integer" type:
> 
> <xs:pattern value='[+-]?[0-9]+'/>
> 
> But according to another erratum E2-18, the above is not a valid regular
> expression, because the character '-' is not allowed. It should be
> 
> <xs:pattern value='[+\-]?[0-9]+'/>

We changed this to 

  <xs:pattern value="[-+]?[0-9]+"/>

at the last minute, possibly only in the diff'ed REC and not the
errata page -- is that OK, or do we still need the backslash?

ht
-- 
  Henry S. Thompson, HCRC Language Technology Group, University of Edinburgh
                      Half-time member of W3C Team
     2 Buccleuch Place, Edinburgh EH8 9LW, SCOTLAND -- (44) 131 650-4440
	    Fax: (44) 131 650-4587, e-mail: ht@cogsci.ed.ac.uk
		     URL: http://www.ltg.ed.ac.uk/~ht/
 [mail really from me _always_ has this .sig -- mail without it is forged spam]

Received on Wednesday, 30 April 2003 05:08:01 UTC