XPath - compound predicate + test if value does NOT start with something
I开发者_运维知识库 need help with some XPath. Say I am working on XHTML. How do I select all the a
elements whose href
attribute is NOT empty and does not begin with, say, 'mailto:'?
You can use the starts-with() function:
//a[@href != '' and not(starts-with(@href, 'mailto:'))]
精彩评论