让我们假设我需要验证一个模式 - 数字,短划线,数字(即5-9)。
所以我用类似的东西创建了.xsd ......
<xs:simpleType name="height_string_t">
<xs:restriction base="xs:string">
<!-- The following isn't going to work, or is it? -->
<xs:pattern value="[0-9]-[0-9]"/>
</xs:restriction>
</xs:simpleType>
.xsd中的模式标记的“转义字符”是什么?