Re: [xsl] text extraction

Subject: Re: [xsl] text extraction
From: mus47@xxxxxxxx
Date: Thu, 12 Oct 2006 16:20:35 +0200 (CEST)
the document contain several element <E1> and I want to have the text contained in every <E1> in a new line
I have tried this solution it works well.
<xsl:for-each select="//E1">
 <xsl:value-of select="self::title"/>
<xsl:text>&#xa;</xsl:text>
</xsl:for-each>

Now if I want to have every word in a new line it will be difficult

Current Thread