我試圖限制模式的屬性元素長度在3到20個字符之間,但我收到錯誤說我的RegEx無效:正則表達式指定的字符串長度範圍:XSD屬性元素
<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>
任何想法我在這裏做錯了嗎?特定的錯誤是"Range end code point is less than the start end code point"
哦,哇,我什至沒有注意到第二個z是大寫字母,感謝你借給我你的眼睛,並指出了我。 :) –