Re: [xsl] text extraction

Subject: Re: [xsl] text extraction
From: "Andrew Welch" <andrew.j.welch@xxxxxxxxx>
Date: Thu, 12 Oct 2006 16:17:23 +0100
On 10/12/06, mus47@xxxxxxxx <mus47@xxxxxxxx> wrote:

<?xml version="1.0" encoding="iso-8859-1"?> <doc> <body> <p> <bold>this is a simple text in <italic>english</italic></bold> <bold>this is a simple text in <italic>french</italic></bold> </p> </body> </doc> What I have using the following XSLT code is: ( this is a simple text in english this is a simple text in french ) What I want now is how to have every word i a line: this is a simple ... english this is a .... french


translate(., ' ', '&#xa;')

Current Thread