Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   XML (http://www.velocityreviews.com/forums/f32-xml.html)
-   -   difficult xsl transform clarification (http://www.velocityreviews.com/forums/t166292-difficult-xsl-transform-clarification.html)

Greg 12-19-2003 01:59 AM

difficult xsl transform clarification
 
A and B can be anything, another words those elements are variable.


I need to transform:
<A> x <\A>
<A> y <\A>
<B> i <\B>
<B> j <\B>
<B> k <\B>

into:
<A>
<P> x <\P>
<P> y <\P>
</A>
<B>
<P> i <\P>
<P> j <\P>
<P> k <\P>
</B>

There seems no easy way to do that. Am I missing somethig? I tried
using variables, but they cannot be reassigned within the same
context. Anyone?

Thx

Colin Savage 12-19-2003 06:54 AM

Re: difficult xsl transform clarification
 
You want to do grouping. The agreed best method is the meunchian method
which you can find here

http://www.jenitennison.com/xslt/grouping/index.html

Also if you search through the archives of this group, there is a
modification using the exslt distinct function.

Colin

"Greg" <grokita@findlaw.com> wrote in message
news:d59607cb.0312181759.4461d66b@posting.google.c om...
> A and B can be anything, another words those elements are variable.
>
>
> I need to transform:
> <A> x <\A>
> <A> y <\A>
> <B> i <\B>
> <B> j <\B>
> <B> k <\B>
>
> into:
> <A>
> <P> x <\P>
> <P> y <\P>
> </A>
> <B>
> <P> i <\P>
> <P> j <\P>
> <P> k <\P>
> </B>
>
> There seems no easy way to do that. Am I missing somethig? I tried
> using variables, but they cannot be reassigned within the same
> context. Anyone?
>
> Thx





All times are GMT. The time now is 05:19 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57