What are the hidden features of XPath 1.0 and XSLT 1.0?
feedback
|
|
Accessing the XSLT document itself with | |||||||
feedback
|
|
A dirty little hack, to start things off:
Example:
Yields | |||||
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:
The normalize-space is necessary because non- whitespace can occur on either side. | ||||
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:
| |||||
feedback
|
|
To find nodes of a given type:
But to find nodes that are of some set of types, you cannot use union in the nodetest:
One approach that works would be:
That repeated predicate is not so DRY. But you can do this:
| |||||
feedback
|
|
String comparisons are case-sensitive in XPath 1.0, but a case-insensitive compare can be done like this:
Ugly, but it works. | |||||
feedback
|