xsl-list
[Top] [All Lists]

Re: [xsl] Checking node value against splitted string/list?

2006-08-14 03:24:53
Phillip B Oldham wrote:

For example, I might check to see whether the name of the
current node is in ('firstname', 'lastname', 'email').

  Just use the = operator:

    string(.) = ('firstname', 'lastname', 'email')

At the moment, I'm using the following:

<xsl:if test="name(.) = 'firstname' or name(.) = 'lastname' or
name(.) = 
'email'"> ... </xsl:if>

  Mmh, you meant the name of the element.  So use instead:

    .[self::firstname or self::lastname or self::email]

  Regards,

--drkm























        
 p5.vert.ukl.yahoo.com uncompressed/chunked Mon Aug 14 10:13:38 GMT 2006 
        
                
___________________________________________________________________________ 
Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet 
! 
Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos 
expériences. 
http://fr.answers.yahoo.com 


--~------------------------------------------------------------------
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>