Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an HTML document opened in two windows, and I need the selected node to be synchronized between both windows.

Using Html Agility Pack I tried:

HtmlNode myNode = GetSomeCertainNode();

string xpath = myNode.XPath; //xpath = "/#comment[1]"

// This line throws an XPathException
var reExtract = myNode.OwnerDocument.DocumentNode.SelectSingleNode(xpath);

Exception message: '/#comment[1]' has an invalid token.

I'm wondering, I took the XPath from the node itself, which means it's a proper XPath, and I use it against the same document, why does it fail, what do I miss?

Update

When selecting some other nodes I get this exception instead: Expression must evaluate to a node-set. (xpath contains /html[1]/body[1]/div[1]/p[3]/strong[1]/#text[1]).

But remember that the value is taken from the node itself, therefore it's very weird. How come it's complaining that it's invalid?

share|improve this question

2 Answers

up vote 2 down vote accepted

The # character is illegal in an element name. A valid XPath expression that selects a comment would be /comment()[1]

share|improve this answer
So how come it was returned by the HtmlNode.XPath property?? is there any way to convert HtmlNode.XPath to valid XPaths? – Shimmy Jul 6 '11 at 5:02
@Shimmy: You would have to ask the developer of that library. – Max Toro Jul 6 '11 at 5:23
Any workaround? – Shimmy Jul 7 '11 at 5:25

According to Mak Toro's answer I created a workaround function:

private string ValidateXPath(string xpath)
{
  var index = xpath.LastIndexOf("/");
  var lastPath = xpath.Substring(index);

  if (lastPath.Contains("#"))
  {
    xpath = xpath.Substring(0, index);
    lastPath = lastPath.Replace("#", "");
    lastPath = lastPath.Replace("[", "()[");
    xpath = xpath + lastPath;
  }                                

  return xpath;
}

Now it works great.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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