xsl-list
[Top] [All Lists]

Re: SelectNodes in MSXML

2003-03-22 05:39:27
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



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