Re: [xsl] SelectNodes in MSXML

Subject: Re: [xsl] SelectNodes in MSXML
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Sat, 22 Mar 2003 12:39:27 +0000
Hi Ankit,

> How do I select all nodes(on all levels) that have the text length
> greater then (say 10) using MSXML.

Whenever you have a "that" in a sentence like the above ("I want to
select all X *that* Y, Z") then it means you should use a predicate.

To select all nodes (on all levels), you need:

  //node()

To select just those whose string length is greater than 10, you need
to add the predicate:

  //node()[string-length(.) > 10]

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


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


Current Thread