This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Knowing node name in order to test


>When I'm processing an element
>user, server or pass, how can I
>test the tag name against a string?
>
>current tag name = 'pass' ?!?!
>

local-name()='pass' 
is the safest way.

name() will also work given your example, but be aware that name()
includes any namespace present by way of adding a prefix, and there
can be cases where this prefix isn't the one used in the input
document.  In other words if your input document had <x:name/> then
name() might legally return 'y:name' if y mapped to the same namespace
URI as x.  If you have Mike Kays book, this is explained in the
'Usage' bit of the name() function.

Regards,
Trevor Nash
--
Traditional training & distance learning,
Consultancy by email

Melvaig Software Engineering Limited
voice:     +44 (0) 1445 771 271 
email:     tcn@melvaig.co.uk

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]