vote up 2 vote down star
1

What are the hidden features of XPath AND XSLT?

flag
Recommend that answers not be duplicated in the question; the answers are just that. – George Stocker Oct 5 at 19:13
@George: See stackoverflow.com/questions/9033/… . Examples in answers, but quick explanation in topic for reference. – Brian Oct 5 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 at 19:30
@George: That's true for many questions, but for questions that have a lot of right answers, it's pretty common for a an explanation of all answers to be under the question, to enable people to see a brief explanation of all relevant answers without reading every individual answer. Of course, Xpath/Xslt hidden features might be too unpopular to have enough answers for this to matter :P – Brian Oct 5 at 19:33
2  
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 at 19:37
show 2 more comments

2 Answers

vote up 3 vote down check

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|flag
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 at 11:11
vote up 1 vote down

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|flag
This is called "Becker's method". – jelovirt Dec 8 at 14:09

Your Answer

Get an OpenID
or

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