Hi,
Given this fragment from an XML document:
I would like to find out what values are missing from a known range. In this case I know the range of the from / to attributes to be 1 to 168 inclusive so I can see simply by looking that I am missing 1 to 11, 81 to 82 and 123 to 168 easy enough, but I want to produce an XSLT transformation that will tell me this. Needless to say I've googled and I can't really come up with a concrete sample so I thought I would ask here.
Is anyone able to help me out here? If not maybe you know of a generic XML/XSLT forum where I could re-post this.
--
Thank you,
Moo.
Given this fragment from an XML document:
Code:
<range>
<value from="12" to="14" output="400" />
<value from="15" to="21" output="730" />
<value from="22" to="28" output="433" />
<value from="29" to="80" output="230" />
<value from="83" to="85" output="220" />
<value from="86" to="122" output="320" />
</range>
Is anyone able to help me out here? If not maybe you know of a generic XML/XSLT forum where I could re-post this.
--
Thank you,
Moo.