Given a list of elements containing text:

<root>
  <element>text text text ...</element>
  <element>text text text ...</element>
<root>

I'm trying to write an XPath 1.0 query that will return the element with the max text length.

Unfortunately string-length() returns a single result and not a set, so I'm not sure how to accomplish it.

Thank you.

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

It is impossible to accomplish using pure XPath 1.0.

link|improve this answer
feedback

I'm trying to write an XPath 1.0 query that will return the element with the max text length

If the number of elements isn't known in advance, it isn't possible to write a single XPath 1.0 expression that selects the element, whose string-length() is the maximum.

In XPath 2.0 this is trivial:

/*/element[string-length() eq max(/*/element/string-length())]

or another way of specifying this, using the general comparison = operator:

/*/element[string-length() = max(/*/element/string-length())]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.