I'm trying to restrict an attribute element of a schema to be between 3 and 20 characters long, but I'm getting an error saying my RegEx is invalid:

<xs:attribute name="name" use="required">
    <xs:simpleType>
        <xs:restriction base="xs:string">
            <xs:pattern value="[A-Za-Z]{3,20}" />
        </xs:restriction>
    </xs:simpleType>
</xs:attribute>

Any idea what I'm doing incorrectly here? Specific error is "Range end code point is less than the start end code point"

link|improve this question

62% accept rate
feedback

2 Answers

up vote 1 down vote accepted

a-Z is the invalid range, you shoudl use the lowercase z instead a-z

 <xs:pattern value="[A-Za-z]{3,20}" />

Note that a ascii value is 97 and Z is 90 so you were actually defining an interval from 97 to 90 => end code point is less than the start end code point

link|improve this answer
Oh wow I didn't even notice that second z was uppercase, thanks for lending me your eyes and pointing that out for me. :) – Chris V. Jan 20 at 17:34
feedback

You could also use xs:maxLength and xs:minLength:

<xsd:restriction base="xsd:string">
  <xsd:minLength value="3"/>
  <xsd:maxLength value="20"/>
</xsd:restriction>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.