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

Re: in search for more elegant XPaths

Subject: Re: in search for more elegant XPaths
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 22 Apr 2009 14:16:21 +0100
Re:  in search for more elegant XPaths
> I very often testing for element nodes that have character content with
> *[string-length(normalize-space(.))&gt;0]

No need to work out the length (which can be surprisingly costly for
general unicode strings) you can just do

 *[normalize-space(.)]

as the predicate is true if teh string is non empty. (Although I have a
feeling saxon for example does that rewrite for you anyway, so it may
make no difference.)


> 	<xsl:text>

You haven't specified a return type for ypur fuction but if it's
intended to be a string declaring it as as="xs:string" and using
<xsl:sequence select="'sozial'"/> rather than
<xsl:text>sozial</xsl:text>
saves the cost of building a text node.

<xsl:function name="ln:getCaseType" as="xs:string>
	<xsl:param name="case" as="element()"/>
	<xsl:choose>
   <xsl:when test="matches(.,'^[LB]?SG')">
    <xsl:sequence select="'sozial'"/>
   </xsl:when>
   <xsl:when test="matches(.,'^[LB]?A(rb)?G')">
    <xsl:sequence select="'arbeit'"/>
   </xsl:when>

Those regex are a bit more lax than your tests but they need not be.

David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________

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.