xsl-list
[Top] [All Lists]

Re: [xsl] how to select all nodes except for one with specific name

2009-06-20 11:24:45
You got it almost:

<xsl:apply-templates select="*[not(name() = 'label')]"/>

- Michael

Am 20.06.2009 um 17:21 schrieb Dmitri Snytkine:

Hello!

I am having a little trouble doing this:

In one of my templates I have this code:
                                   <xsl:if test="./label">
                                                <b>
                                                        <xsl:apply-templates 
select="./label"/>
                                                </b>
                                        </xsl:if>

So, I applied the templates to a 'label' node, and then I want to
apply the templates to the rest of child nodes
but of cause I don't want to select 'label' node anymore.

I need to select all child nodes except for the 'label'

I tried this, but this does not work and generates an error in parser:
<xsl:apply-templates select="not(*[name() = 'label'])"/>

What is the correct way to select all nodes EXCEPT for one with specific name?

Thank you.







--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>