vote up 3 vote down star

for example i have an xpath and wish to add a comment near it to identify it.

/html/body/div/table/tr/td/a{this is a link}
flag

3  
Where do you have the XPath? What language are you using it from? What is that language's comment syntax? – Ken White Nov 4 at 21:06
i mean is it possible to add comments naively to an xpath. – gweg Nov 4 at 21:08

2 Answers

vote up 1 vote down check

Not a comment syntax, but you can give string literals as predicate, which evaluates as true (imho) and should not change the outcome of the expression. I don't know if this has big performance drawbacks.

/html/body/div/table["this is"]["a table"]/tr/td/a["this is a link"]

But like mjv said, I also would stick to the syntax of the host language.

link|flag
Hah, kind of clever. – James Sulak Nov 4 at 23:02
vote up 5 vote down

No, the XPATH syntax doesn't allow to embed comments within the path string.

This is typically not a significant limitation because paths are usually short and a comment can be placed nearby, in the particular syntax of the host language (XSLT, C#, whatever...)

link|flag

Your Answer

Get an OpenID
or

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