xsl-list
[Top] [All Lists]

Re: [xsl] text extraction

2006-10-12 07:20:47
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


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