Hi ,
In HAP i found "|" works as "and" condition, then what's the alternative or "or" condition.
eg: i want the list of element which neither have "abc" nor"xyz" as their attributes.
htmldoc.DocumentNode.SelectNodes("//*[not(@abc| @xyz)]");
but this list the element which does not have both "abc" and"xyz"
Any help will be appreciated.
In HAP i found "|" works as "and" condition, then what's the alternative or "or" condition.
eg: i want the list of element which neither have "abc" nor"xyz" as their attributes.
htmldoc.DocumentNode.SelectNodes("//*[not(@abc| @xyz)]");
but this list the element which does not have both "abc" and"xyz"
Any help will be appreciated.