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: testing node type



> Pawson, David writes:
>  > name() returns an empty string if its a comment.
>  > <xsl:variable name="empty" />
>  >  <xsl:if test="name( following-sibling::node()[1]) =$empty">
> 
> but name() also returns empty if its a processing-instruction, doesnt
> it? ditto text()
pi returns the target,
text() returns empty, so need to combine with emtpy-element check <grin/>

name( following-sibling::node()[1]) =$empty and
not(string(following-sibling::node()[1]))">

Regards DaveP


 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]