Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过使用 xsd 来验证 xml 元素是否是 5 的乘积。任何 1 都知道该怎么做吗?
谢谢,
伊泰
我很确定您不能使用通用公式进行验证。但是在您的特定情况下,您可以使用模式匹配来匹配 5 的倍数
<xs:element name="myelement"> <xs:simpleType> <xs:restriction base="xs:string"> <xs:pattern value="[0-9]*[05]{1}"></xs:pattern> </xs:restriction> </xs:simpleType> </xs:element>