|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Changing <b> to "["
Hi People,
I need to replace
all <b> and <i> with "[" , and
all </b> and </i> with "]"
in a XML file.
Everything was fine with the xsl below,
but when I have a <b><i>text</i></b> sequence
the result is:
[<i>text</i>]
And I need:
[[text]]
Do you have some ideia to look inside the match and apply the template
again?
Thank you very much.
- - - - - - - - - - - - - - - - - - - - - - - - -
XSL used:
<!--MAIN TEMPLATE-->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<!-ELEMENTS B and I-->
<xsl:template match="b|i">
<xsl:text>[</xsl:text>
<xsl:copy-of select="@*|node()"/>
<xsl:text>]</xsl:text>
</xsl:template>
- - - - - - - - - - - - - - - - - - - - - - - - -
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








