[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: lowercasing all attributes...

Subject: Re: lowercasing all attributes...
From: Oleg Tkachenko <olegt@xxxxxxxxxxxxx>
Date: Sun, 27 Jan 2002 16:51:07 +0200
all attribute xsl
Martijn wrote:

I'd like to lowercase a document's attributes through <xsl:apply-templates
select="???">

I know it's translate(., 'ABCDEFGHIJKLMNOPQRSTUVWXYZ',
'abcdefghijklmnopqrstuvwxyz') but how 'bout the template match pattern and
the select for apply-templates ??


I'm not sure I fully understand your question, but anyway if you want to lowercase all attributes values, you can do it this way:

<xsl:template match="@*">
<xsl:attribute name="{name()}">
<xsl:value-of select="translate(., 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz')"/>
</xsl:attribute>
</xsl:template>


I f you wanna lowercase attributes' names, try this one:
<xsl:template match="@*">
<xsl:attribute name="{translate(name(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz')}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:template>


--
Oleg Tkachenko
Multiconn International, Israel


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



Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.