Subject: Re: getting sibling text
From: Mukul Gandhi <mukul_gandhi@xxxxxxxxx>
Date: Wed, 25 May 2005 19:14:56 -0700 (PDT)
|
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@xxxxxxxxx> 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
>
>
__________________________________
Yahoo! Mail
Stay connected, organized, and protected. Take the tour:
http://tour.mail.yahoo.com/mailtour.html
| Current Thread |
- getting sibling text
- jpk - 25 May 2005 22:29:40 -0000
- <Possible follow-ups>
- Mukul Gandhi - 26 May 2005 02:15:14 -0000 <=
|
|