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!