up vote 14 down vote favorite
3
share [g+] share [fb]

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

link|improve this question

77% accept rate
feedback

3 Answers

up vote 25 down vote accepted

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

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

you can use the not() function

or

expression != true()
link|improve this answer
feedback

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

link|improve this answer
2  
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
feedback

Your Answer

 
or
required, but never shown

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