假设我需要验证一个模式——数字、破折号、数字(即 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 中模式标记的“转义字符”是什么?