up vote 2 down vote favorite
1
share [g+] share [fb]

What are the hidden features of XPath 1.0 and XSLT 1.0?

link|improve this question
Recommend that answers not be duplicated in the question; the answers are just that. – George Stocker Oct 5 '09 at 19:13
@George: See stackoverflow.com/questions/9033/hidden-features-of-c . Examples in answers, but quick explanation in topic for reference. – Brian Oct 5 '09 at 19:16
I dont' like that method because it clouds the 'question/answer' part. I saw a FAQ question on this, but can't find it. – George Stocker Oct 5 '09 at 19:30
3  
I dislike it because it doesn't segregate the question/answer enough. A better way would be to have an answer which is a compiled list of all the other answers. This answer would be marked as 'accepted' so that it would be docked below the question, and people could edit that. It would also play more nicely with the Q & A format and not muddy those waters. – George Stocker Oct 5 '09 at 19:37
1  
Apparently Xpath and Xslt don't have hidden features :( – Brian Nov 11 '09 at 16:37
show 3 more comments
feedback

6 Answers

up vote 5 down vote accepted

document('')

Accessing the XSLT document itself with document(''). Occasionally useful for stuff like accessing lookup tables stored inside the stylesheet itself, eliminating the need for an external file.

link|improve this answer
2  
I'm not sure I'd really consider that a "hidden" feature, given that it is clearly stated in the spec: 'document("") refers to the root node of the stylesheet; the tree representation of the stylesheet is exactly the same as if the XML document containing the stylesheet was the initial source document' - w3.org/TR/xslt#document Still, a surprising number of people don't know it, so +1 anyway :-) – NickFitz Oct 6 '09 at 11:11
Do note that there are many ways a document can end up without URI (i.e. dynamic generated stylesheet). In those cases document('') won't work. – user357812 Nov 9 '10 at 22:52
feedback

A dirty little hack, to start things off:
Conditional strings in Xpath by abusing the fact that true is 1 and false is 0.

Example:

<div class="ID{substring('-on', 4-4*($Var = 2))}">

Yields <div class="ID-on"> or <div class="ID">, depending on if $Var is 2.

link|improve this answer
This is called "Becker's method". – jelovirt Dec 8 '09 at 14:09
A better pattern is substring($string, 1 div $condition). – user357812 Nov 9 '10 at 22:54
feedback

When an attribute value can hold multiple items, like space-separated items in HTML @class, how do you formulate a predicate that unambiguously matches on a specific item? For example, in an application that defines classes "error" and "errors", you can find elements containing "error" like this:

contains(concat(' ',normalize-space(@class),' '), ' error ')

The normalize-space is necessary because non-&#20; whitespace can occur on either side.

link|improve this answer
In general, for a "normalize" sequence, is contains( concat( $separator, $sequence, $separator), concat( $separator, $token, $separator)). But this is XSLT 1.0, because XPath 1.0 has not the sequence data type. XPath 2.0 has the sequence data type. – user357812 Nov 9 '10 at 23:20
feedback

There is no escape character for XPath string literals, although the only reserved character is whichever character is being used to quote the string (' or "). So to construct a string containing both kinds of quotes, use:

concat("Can't ",'"escape" so concat')
link|improve this answer
Not the better example, because this XPath expression should be contained into some XSLT instruction's attribute: both <xsl:value-of select='concat("Can't ",'"escape" so concat')'/> and <xsl:value-of select="concat("Can't ",'"escape" so concat')"/> are wrong. Do remember that you could always use text nodes as in xsl:text instruction: <xsl:text>Can't "escape" so concat</xsl:text> is right. – user357812 Nov 9 '10 at 23:05
This is a pure XPath answer. Certainly more options are available to you when XPath is used in conjunction with XLST. I do more work with the browser XPath engines. – Chris Noe Nov 10 '10 at 3:00
feedback

To find nodes of a given type:

//input[@class='foobar']

But to find nodes that are of some set of types, you cannot use union in the nodetest:

//(input|select|textarea)[@class='foobar']

One approach that works would be:

//input[@class='foobar']|//select[@class='foobar']|//textarea[@class='foobar']

That repeated predicate is not so DRY. But you can do this:

//*[self::input|self::select|self::textarea][@class='foobar']
link|improve this answer
The last expression is wrong because it will select any element with a sibling input, select or textarea and having a class attribute with "foobar" string value. The correct equivalent expression is //*[self::input|self::select|self::textarea][@class='foobar'] wich shows that self axe is a "hidden feature"... – user357812 Nov 9 '10 at 23:17
You're absolutely right, answer edited. thanks! – Chris Noe Nov 10 '10 at 12:45
feedback

String comparisons are case-sensitive in XPath 1.0, but a case-insensitive compare can be done like this:

translate(.,'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvwxyz')='foobar'

Ugly, but it works.

link|improve this answer
XSLT 1.0 was "simple" enough but designed following standars. Do remember that when you talk about lower case and upper case in an UNICODE context, you need to talk about collations. This was implement in XSLT 2.0. So this XSLT 1.0 method is enough for an ANSI-US. It's not ugly. It's properly. – user357812 Nov 9 '10 at 23:10
Ugly as compared to lower-case() that is available with XPath 2 :) – Chris Noe Nov 10 '10 at 12:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.