Reputation: 6632
I'm writing some higher-order XSLTs, and would like to operate with XPath expressions like they're XMLs, rather than with their string representations. Is there any research on this topic?
Upvotes: 1
Views: 43
Reputation: 163262
XPath is a sublanguage of XQuery, and XQuery has an XML representation in the form of XQueryX, so you could use this.
Upvotes: 1