-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Req] navigating with XPath #27
Comments
good idea |
2003-03-02, XPath Querying Over Objects with ObjectXPathNavigator, Steve Saxon, https://msdn.microsoft.com/en-us/library/ms950764.aspx "You could pass the IXPathNavigator over the object directly into an XSLT transform without needing to serialize it first." https://github.com/AndrewMayorov/ObjectXPathNavigator ... Another approach is Linq to Objects |
http://goessner.net/articles/JsonPath/
http://programmers.stackexchange.com/questions/264706/xslt-equivalent-for-json |
https://www.sitepen.com/blog/2010/11/02/resource-query-language-a-query-language-for-the-web-nosql/ RQL is designed to be URI friendly, leveraging URI encoding and designated delimiters for syntax that works perfectly in web requests. |
XPath uses path expressions to select nodes or node-sets.
brief introduction:
http://www.w3schools.com/xsl/xpath_syntax.asp
EBNF-like grammar:
http://www.w3.org/TR/xquery-xpath-parsing/#id-grammar
.net class library contains a set of classes and interfaces which automates that.
(starting from System.Xml.XPath, IXPathNavigable )
I propose to implement such access to the tree of Match-es, which are returned as result of parsing
The text was updated successfully, but these errors were encountered: