i using htmlagilitypack. need write xpath query expression select nodes having "style" attribute except "ol" i.e. order list node ? please answer ?
try this
doc.documentnode.selectnodes("//body/*[not(self::ol)][@style]");
i using htmlagilitypack. need write xpath query expression select nodes having "style" attribute except "ol" i.e. order list node ? please answer ?
try this
doc.documentnode.selectnodes("//body/*[not(self::ol)][@style]");
Comments
Post a Comment