Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はそのようなものを書きたい:
//a[not contains(@id, 'xx')]
(つまり、「id」属性に文字列「xx」が含まれていないすべてのリンク)
正しい構文が見つかりません。
not()は XPath の関数 (演算子ではなく) であるため、
not()
//a[not(contains(@id, 'xx'))]
not(expression)関数を使用できます
not(expression)
また
expression != true()