使用 XSD 验证 CSV 值?
我有一个 xml 文件,其属性如下所示:
<Element attribute="1234,2345,3413,6532" />
我需要一种方法来验证属性值是否是特定范围内以逗号分隔的整数列表。有人知道如何使用 XSD 来做到这一点吗?
谢谢!
I have an xml file with an attribute that looks something like this:
<Element attribute="1234,2345,3413,6532" />
I need a way to validate that the attribute value is a comma separated list of integers within a certain range. Anyone know how to do this using XSD?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该将属性的值限制为以逗号分隔的整数列表:
如果您提到的范围足够简单,您也许可以在 RE 中表达它,例如
[1-9]\d{3}< /code> 为 4 位整数。
This should restrict the attribute's values to a comma-separated list of integers:
If the range you mention is simple enough you might be able to express that in the RE, for example
[1-9]\d{3}
for a 4-digit integer.