Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
6answers
1k views

Is there a Java implementation of JSONPath?

I'm looking for a JsonPath like implementation in a java library. And can't find any. Seems useful for testing and server side processing.
3
votes
4answers
2k views

JSONPath or other XPath like utility for JSON/Javascript; or Jquery JSON

I have been looking at JSONPath and though it seems pretty well done, I wonder if anyone has worked with it and can comment on its usability, or can recommend alternatives? What would be really slick ...
2
votes
1answer
183 views

How to use C# example using JsonPath?

I'm trying to use JsonPath for .NET (http://code.google.com/p/jsonpath/downloads/list) and I'm having trouble finding an example of how to parse a Json string and a JsonPath string and get a result. ...
2
votes
1answer
637 views

how to filter / query date using dojox.jsonPath.query

I am referring to use http://www.sitepen.com/blog/2008/03/17/jsonpath-support/ This is what I am doing (spent two days but no luck): first drawing a datagrid with integer column and a date column and ...
1
vote
1answer
485 views

Craft a JSONpath expression so that it retrieves only a specific value?

I have some JSON of which the following is a small sample: results": { "div": [ { "class": "sylEntry", "id": "sylOne", "div": [ { "class": "sT", "id": "sOT", "p": "Mon 11/17, Computer ...
1
vote
1answer
603 views

JSONPath :contains filter

Hey all, I was wondering if any knew of a way to use a regular expression or wildcard operator (or pehaps '%LIKE%' in SQL) so I could use JSONPath to do searching within a large set of JSON data. For ...
0
votes
1answer
70 views

Quoting/escaping jsonpath elements for in clause of dependent fql queries

Using the facebook php sdk, I am trying to get a list of comments for every post made to a person's wall by someone else. I'm using FQL in a Batch API request as follows: $getStream = ...
0
votes
1answer
106 views

Compare a string with multiple JSON property values using JSONPath

I'm building a search suggestion text box control in JavaScript and am trying to find a way to compare the string the user typed against a JSON Object that represents the user's contact list. The ...
0
votes
2answers
310 views

PHP JSONPath, XPath contains filter

I using JSONPath with PHP and i need the xpath equivalent to the contains filter, "contains(dept, 'Management')"; I have the following JSON and i want to filter the staff members to the Management ...
0
votes
1answer
312 views

JSON best practices: filtering nodes client side or not?

In my database I store a number of "topics" and "examples". Each example belongs to one topic. I'd like show all the topics by name ASC in a tree component except for one topic (Topic C) which I ...