Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given the following XML structure

<html>
  <body>
    <div>
      <span>Test: Text2</span>
    </div>
    <div>
      <span>Test: Text3</span>
    </div>
    <div>
      <span>Test: Text5</span>
    </div>
  </body>
</html>

What is the best XPath query to locate any span with text that starts with Test?

share|improve this question

2 Answers

up vote 14 down vote accepted
//span[starts-with(.,'Test')]
share|improve this answer
There's a good chance you'll want to normalize-space() on that too, making it //span[starts-with(normalize-space(.), 'Test')]. – mlissner Feb 20 at 21:43

Valid option is also:

//span[contains(.,'Test')]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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