xsl-list
[Top] [All Lists]

Re: [xsl] text extraction

2006-10-12 08:17:41
On 10/12/06, mus47(_at_)voila(_dot_)fr <mus47(_at_)voila(_dot_)fr> 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;')

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