Re: [xsl] getting sibling text

Subject: Re: [xsl] 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
  • [xsl] getting sibling text
    • jpk - Wed, 25 May 2005 15:29:17 -0700 (PDT)
      • <Possible follow-ups>
      • Mukul Gandhi - Wed, 25 May 2005 19:14:56 -0700 (PDT) <=