Re: [xsl] translation string to element

Subject: Re: [xsl] translation string to element
From: "cutlass" <cutlass@xxxxxxxxxxx>
Date: Wed, 17 Apr 2002 10:40:11 +0100
Hello Nicolas,

----- Original Message -----
From: "Nicolas Mazziotta" <Nicolas.Mazziotta@xxxxxxxxx>

> That's not exactly that:
> Consider the following .xml file:
>
> <?xml version="1.0" encoding="ISO-8859-1"?>
> <root>
> I am fine
> </root>

you could use the str:tokenize ( www.exslt.org ) and make everything a token
to be examined for further processing (
e.g. I am fine turns into
<token>I</token><token>am</token><token>fine</token>

not quite sure u need that kind of firepower

or something simpler at http://www.dpawson.co.uk/xsl/sect2/replace.html

cheers, jim fuller


>
> I want to create a templatethat would produce the following output:
>
> <?xml version="1.0" encoding="ISO-8859-1"?>
> <root>
> I am <tag>fine</tag>
> </root>
>
> or
>
> <?xml version="1.0" encoding="ISO-8859-1"?>
> <root>
> I am &mood;
> </root>
>
> or
>
>
> <?xml version="1.0" encoding="ISO-8859-1"?>
> <root>
> I am not fine
> </root>
>
> etc.
>
> N. Mazziotta
> -----Message d'origine-----
> De : owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> [mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx] De la part de cutlass
> Envoyé : mercredi 17 avril 2002 11:16
> À : xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Objet : Re: [xsl] translation string to element
>
> uhhhh,
>
> <xsl:element name="$string">
>
> </xsl:element>
>
> not quite sure what u mean ?
>
> cheers, jim fuller
>
> ----- Original Message -----
> From: "Nicolas Mazziotta" <Nicolas.Mazziotta@xxxxxxxxx>
> To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
> Sent: Wednesday, April 17, 2002 10:08 AM
> Subject: [xsl] translation string to element
>
>
> > Hello,
> > Can anybody tell me how to translate a string (not a single character
> > and not the whole text() of an element) into an element or an entity?
> > Best regards.
> >
> > N. Mazziotta
> >
> >
> >  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> >
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread