[Solved] Sibling as Child
In XSLT 2.0, you could have probably made use of xsl:for-each-group, using its group-starting-with attribute. In XSLT 1.0 though, this can be achieved by use of keys. You can define a key to look up the Loop-2000B elements by their first preceding Loop-2000A element <xsl:key name=”B” match=”ex:Loop-2000B” use=”generate-id(preceding-sibling::ex:Loop-2000A[1])” /> Similarlym you could do the same … Read more