Subject: string replacement for HTML tags
From: Daniel Fisher <daniel.fisher@xxxxxx>
Date: Thu, 25 Apr 2002 13:04:59 -0400
|
Hello,
I'm trying to do some string replacement in my transform to generate HTML.
Basically I've got a node like this:
<data>This text is [b]bold[/b]</data>
When I've finished my transform I want:
This text is <b>bold</b>
This seems pretty easy using recursion, however it becomes a mess if you introduce
multiple string replacements to support tags like [u] and [i].
Is it possible to store the results from a template without displaying them
and then perform several string replacements on the results?
Once I've made all the replacements I need I could then display the final results.
--
Daniel Fisher
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|