xsl-list
[Top] [All Lists]

Re: [xsl] Delimited string-value of elements / text nodes with XSLT 1.0?

2006-11-20 07:24:19
Thank you, both!

Now I have got the idea, ended up basically with this:

...
 <xsl:template match="text()">
   <xsl:value-of select="." />
   <xsl:text>&#10;</xsl:text>
 </xsl:template>

 <xsl:template match="/">
   <xsl:apply-templates select="html/body" />
 </xsl:template>
...

I'm afraid I completely missed the built-in template for the text(), which we just actually override here.

Cheers,
Balazs

From: Florent Georges <darkman_spam(_at_)yahoo(_dot_)fr>
Reply-To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] Delimited string-value of elements / text nodes with XSLT 1.0?
Date: Mon, 20 Nov 2006 09:56:22 +0100 (CET)

Dimitre Novatchev wrote:

  Hi

>    <xsl:template match="text()">
>      <xsl:value-of select="concat(., ' ')"/>
>    </xsl:template>

  Following is another solution, maybe better, and maybe not, depending
on the exact description of the problem (but the overall idea remains
the same):

    <xsl:template match="p">
      <xsl:value-of select="concat(' ', ., ' ')"/>
    </xsl:template>

  Regards,

--drkm





























___________________________________________________________________________
Découvrez une nouvelle façon d'obtenir des réponses à toutes vos questions ! Profitez des connaissances, des opinions et des expériences des internautes sur Yahoo! Questions/Réponses
http://fr.answers.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>
--~--


_________________________________________________________________
FREE pop-up blocking with the new MSN Toolbar - get it now! http://toolbar.msn.click-url.com/go/onm00200415ave/direct/01/


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