xsl-list
[Top] [All Lists]

is recursion the best way to solve this?

2005-03-01 12:44:51
I have been trying to write an xsl transfor for
converting the following src xml to dest xml. No
success yet, wondering if anyone of you have faced
similar problem, appreciate if you could share any
ideas. The problem is how to wrap the OuterTag over
the InnerTag and the OuterTag can be nested.

thnx in advance
Anil 

src.xml
-------
<Object>
        <HeaderTag>
        </HeaderTag>
        <Object>
                <OuterTag>
                </OuterTag>
                <Object>
                        <InnerTag>
                        </InnerTag>
                </Object>
        </Object>
        <Object>
                <InnerTag>
                </InnerTag>
        </Object>
        <Object>
                <OuterTag>
                </OuterTag>
                <Object>
                        <OuterTag>                      
                        </OuterTag>
                        <Object>
                                <InnerTag>
                                </InnerTag>
                        </Object>                       
                </Object>
                <Object>
                        <InnerTag>
                        </InnerTag>
                </Object>               
        </Object>       
</Object>


dest.xml
--------

<Root>
        <HeaderTag>
        </HeaderTag>
        <OuterTag>
                <InnerTag>
                </InnerTag>
        </Outertag>
        <InnerTag>
        </InnerTag>
        <OuterTag>
                <OuterTag>
                        <InnerTag>
                        </InnerTag>
                </OuterTag>
                <InnerTag>
                </InnerTag>
        </OuterTag >    
</Root>


                
__________________________________ 
Do you Yahoo!? 
Read only the mail you want - Yahoo! Mail SpamGuard. 
http://promotions.yahoo.com/new_mail 

--~------------------------------------------------------------------
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>