xsl-list
[Top] [All Lists]

Re: [xsl] Is this possible using XSLT?

2006-07-03 09:58:49

Maybe you can match on @lefparen != "" and use a recursive function to open a <paren> tag for each "(".

In the function you also process your bar tags and return when @rightparent = ")"

Too lazy to try to write real code, but I think it may work.

-- Raffaele


Rob Allen wrote:
Hello,

Is it possible to get XSLT to transform XML that looks
like this:
<foo>
    <bar leftparen="((" rightparen="" num="3" oper="*"
/>
    <bar leftparen="" rightparen=")" num="2" oper="-"
/>
    <bar leftparen="" rightparen=")" num="2" />
</foo>

into something that looks like this:
<foo>
   <paren>
     <paren>
       <bar num="3" oper="*"/>
       <bar num="2" oper="-"/>
     </paren>
     <bar num="2"/>
   </paren>
</foo>

"paren" elements are opened and closed based on the
number of '(' in each element's leftparen and
rightparen attributes.
Can anyone help?
Thanks,

Rob



__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com
--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



!DSPAM:44a9139144561971730823!


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

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