xsl-list
[Top] [All Lists]

Re: [xsl] for-each-group - only get elements in each group

2016-01-20 12:25:50
Rick Quatro rick(_at_)rickquatro(_dot_)com wrote:

There may be instances that I have additional siblings between some of the
<Category> elements. I want to grab everything after the first unique
<Category> element up to the next unique <Category> element. Thank you.

If you adapt Ken's suggestion to

  <xsl:for-each-group select="Cases/Story/(* except Category)"
                        group-by="preceding-sibling::Category[1]">

then I think you get what you want.
--~----------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
EasyUnsubscribe: http://lists.mulberrytech.com/unsub/xsl-list/1167547
or by email: xsl-list-unsub(_at_)lists(_dot_)mulberrytech(_dot_)com
--~--

<Prev in Thread] Current Thread [Next in Thread>