vote up 1 vote down star

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

flag

79% accept rate

1 Answer

vote up 6 vote down check

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

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

Your Answer

Get an OpenID
or

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