You may try like this ..
<xsl:template match="p">
<xsl:apply-templates select="span" />
</xsl:template>
<xsl:template match="span">
<xsl:value-of
select="normalize-space(following-sibling::text()[1])"
/>
</xsl:template>
(This is not tested)
Regards,
Mukul
--- jpk <jopaki(_at_)yahoo(_dot_)com> wrote:
'lo all,
I need to isolate text 'Root level text'
from xml source:
<p>
<span>whatever</span>
Root level text
</p>
__________________________________________________
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>
--~--
__________________________________
Yahoo! Mail
Stay connected, organized, and protected. Take the tour:
http://tour.mail.yahoo.com/mailtour.html
--~------------------------------------------------------------------
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>
--~--