[xsl] Regular expressions in a schema

Subject: [xsl] Regular expressions in a schema
From: Chuck Paussa <cpaussa@xxxxxxxxxxxxx>
Date: Fri, 10 May 2002 16:44:21 -0700
I'm trying to write a validating pattern in my schema to allow from 1 to 4 occurrances of the pattern [+]?[\.0-9]+%[ ]?
(That's 1 - 4 real number percentages delimited by a space)


   <simpleType name = "background_position_percentage_Type">
       <restriction base = "string"><!-- percentage_Type{1,4} -->
           <pattern value = "[[+]?[\.0-9]+%[ ]?]{1,4}"/>
       </restriction>
   </simpleType>

doesn't work because I can't put [] inside of an atom. Does anyone know if there is a proper way to write this pattern?

Chuck


XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list



Current Thread