Just use:
//td[contains(normalize-space(.),'Constant')]/@class
Do note that the above expression may select more than one node.
To select only the N-th node from these, use an XPath expression of this kind (for N=1):
(//td[contains(normalize-space(.),'Constant')]/@class)[1]
If none of these are selecting any node the reason may be:
//td[contains(normalize-space(.),'Constant')] doesn't select any node because there is no td whose string value contains the string 'Constant'. Are you sure you are using the exact capitalization? XPath is case-sensitive and 'constant' is not equal to 'Constant'.
//td[contains(normalize-space(.),'Constant')] doesn't select any node because there is a default namespace. In this case you have to register a namespace and use its prefix in the XPath expression (there are a lot of questions and answers about this -- read them): //x:td[contains(normalize-space(.),'Constant')]
//tdand//td[contains(normalize-space(), 'Constant')]return? – Tomalak Jan 3 '11 at 15:29tdelement – user357812 Jan 3 '11 at 16:01