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

I want to write something of the sort:

//a[not contains(@id, 'xx')]

(meaning all the links that there 'id' attribute doesn't contain the string 'xx')

I can't find the right syntax.

Thanks

share|improve this question

3 Answers

up vote 76 down vote accepted

not() is a function in xpath (as opposed to an operator), so

//a[not(contains(@id, 'xx'))]
share|improve this answer

you can use not(expression) function

or

expression != true()
share|improve this answer

You should also check out the false() function which works in much the same way.

share|improve this answer
6  
The false() function always returns the boolean value false. Whereas not(arg) returns false if arg is true, or true if arg is false. – Daniel Earwicker Oct 8 '11 at 9:01

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.