xsd 属性和元素验证
我正在尝试创建一个 XSD 架构来验证以下 xml。
<Item ItemGUID="3F2504E0-4F89-11D3-9A0C-0305E82C3301">The name of the item</Item>
我想验证属性“ItemGUID”的最大长度为 36 个字符,“项目名称”的最大长度为 25 个字符。
如何使用 xsd 模式验证它是否满足上述条件?
I am trying to create an XSD schema which will validate the following xml.
<Item ItemGUID="3F2504E0-4F89-11D3-9A0C-0305E82C3301">The name of the item</Item>
I want to validate the max length of the attribute "ItemGUID" to 36 characters and "The name of the item" to a max 25 characters.
How can it be validated to satisfy the above condition using the xsd schema?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 XML Schema,您可以执行以下操作:
我还没有尝试过,但如果这不起作用,它应该非常接近您所需要的。
With XML Schema, you can do something like this:
I haven't tried it, but if this doesn't work it should be very close to what you need.