How can I get, in xslt, all childs that have another child with some specific name?
For example:
<node>
<text>
<char></char>
</text>
<text>
<char></char>
</text>
<text>
<tag></tag>
</text>
</node>
I want to call to an apply template to all text
nodes that has a tag
inside, and call another template for all text node, that has a char
inside