Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When using XSL what is the difference between

<xsl:apply-templates select="./*"/>

and

<xsl:apply-templates />

The former does not appear to bring in any text after a child element.

share|improve this question

1 Answer

up vote 12 down vote accepted

Correct. "*" or "./*" selects the child elements of the context node. But "node()" or "./node()" selects all the children including elements, text nodes, comments, and processing instructions. The default for xsl:apply-templates is select="node()".

share|improve this answer
Wondering about this myself. +1 – FailedDev Oct 7 '11 at 22:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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