a bit out of scope, but carefully written javascript libraries can all be used this way. And there should be a lot that support json via eg. regexps (if plain...
972
Atif Aziz
azizatif
Apr 4, 2008 10:46 am
The fastest way to get started would be to load the JScript (MS's JavaScript engine) and get it to parse the JSON, like this: Set sc =...
971
Bill Guindon
webgorilla
Apr 4, 2008 3:37 am
I'm looking for a script/example/library written in VBA to parse JSON data. I didn't see one on json.org, and have had little luck with Google searches....
970
plexium_nerd
Apr 4, 2008 3:08 am
I'm not sure if this benchmark is useful or not but i threw together a set of three tests which just iterates over equivalent queries 1000 times. Since there's...
969
Gustavo Munoz
justavo_munoz
Apr 3, 2008 1:57 am
Have you run any benchmark between both libraries for some of the common features? ... -- Blog: http://justavo.blogsome.com/ [Non-text portions of this message...
968
Michael Schøler
michael.scholer
Apr 2, 2008 4:25 pm
... I was not aware, I'll have a look at it. But not for the current project which is done in C# / .net. ... Great - let me know if you like it. /Michael...
967
Stephen M. McKamey
stephen.mckamey
Apr 2, 2008 3:36 pm
Also a good mapping for round-trip support of JSON-XML conversion is JsonML: http://jsonml.org It works with any type of XML including XHTML....
966
Tatu Saloranta
cowtowncoder
Apr 2, 2008 3:27 pm
Hi Michael! One quick suggestion: On Tue, Apr 1, 2008 at 11:14 PM, Michael Schøler <michael.scholer@...> wrote: ... You may be aware of this, but...
965
Michael Schøler
michael.scholer
Apr 2, 2008 6:14 am
Hi JSON group, I'm brand new here and was invited here by Douglas Crockford (thanks, I'm honored!) based on my work with a jsonDiff implementation, so I guess...
964
osirisdf
Apr 2, 2008 12:04 am
Hello, I have a slight problem, an adequate explanation of which I have not been able to find. I'm hoping you can shed some light on the matter... I'm trying...
963
plexium_nerd
Apr 1, 2008 10:11 pm
When I decided to make Jpath, no. It wasn't until afterwards when i found that library. However, they are still pretty different and each offer different...
962
kriszyp
Apr 1, 2008 8:41 pm
Are you aware of JSONPath, and XPath-like functionality for JSON that it already provides? http://goessner.net/articles/JsonPath/...
961
plexium_nerd
Apr 1, 2008 5:13 pm
Howdy All, I'd just like to put my JPath library out there in case others might find it as useful as i did. http://bluelinecity.com/software/jpath ...
960
Thomas Jansen
tc.jansen
Mar 30, 2008 3:56 pm
Thanks for all the feedback on the initial release of TinyJSON ("A Minimalistic JSON Reader in C++"). Finally, I found some time to include most of the ideas...
959
Tatu Saloranta
cowtowncoder
Mar 27, 2008 5:46 pm
On Thu, Mar 27, 2008 at 1:56 AM, Jorge Chamorro <jorge@...> wrote: ... You may well be right that a regexp based one is faster (given JS' lack of...
958
Douglas Crockford
douglascrock...
Mar 27, 2008 1:16 pm
... As a matter of discipline, I always declare things before I use them. ... Some people are distrustful of regular expressions. An implementation that does...
957
Jorge Chamorro
george_of_th...
Mar 27, 2008 8:57 am
Line 170 is an enigma : (var) value, // Place holder for the value function. As (var) value = f() is defined later on @line 230... does 170 really make...
956
Douglas Crockford
douglascrock...
Mar 26, 2008 11:48 pm
json_parse.js is a JSON parser written in JavaScript without any use of RegExp. http://json.org/json_parse.js...
955
Douglas Crockford
douglascrock...
Mar 24, 2008 10:31 pm
I have updated json2.js to include a prettyprinting option. If the third parameter is a string (such as "\t" or " ") or a number of spaces, then nested...
954
Douglas Crockford
douglascrock...
Mar 22, 2008 8:28 pm
I have updated json2.js, adding features suggested by Mark Miller and Chris Zyp. JSON.parse can take a reviver function that is passed each key and value, with...
953
Douglas Crockford
douglascrock...
Mar 17, 2008 1:24 pm
JSLint (www.JSLint.com) was updated recently to include new RegExp literal policies. http://www.JSON.org/json.js and http://www.JSON.org/json2.js have been...
952
rui.maciel
Mar 15, 2008 3:52 pm
I'm proud to announce that MJSON v0.8 has been released! MJSON is Maciel's JSON parser, a small light-weight library that handles documents written in the JSON...
951
Douglas Crockford
douglascrock...
Mar 1, 2008 3:23 pm
Support was added to the Java reference implementation for Apple's Old Style ASCII Property Lists. It recognizes strings, arrays, and dictionaries. It is...
950
Himanshu Ranavat
himanshu_ran...
Feb 28, 2008 5:31 pm
Okay, let see if I can come up with something Himanshu Douglas Crockford <douglas@...> wrote: > I do not have access to...
949
Douglas Crockford
douglascrock...
Feb 28, 2008 3:34 pm
... json.org website. ... on json.org website Send me a file of good stuff and I will put it on JSON.org....
948
Himanshu Ranavat
himanshu_ran...
Feb 27, 2008 3:54 pm
Hi, I do not have access to the ability to upload or make changes to json.org website. However, my personal suggestion would be to take an updated zip file...
947
Akhil Arora
akhilatsun
Feb 26, 2008 10:36 pm
Hi Himanshu, An update of the org.json.me library hosted at https://meapplicationdevelopers.dev.java.net/mobileajax.html worked around this issue by supplying...
946
Himanshu Ranavat
himanshu_ran...
Feb 26, 2008 5:59 am
It will work in CDC - Personal Profile http://java.sun.com/javame/reference/apis/jsr216/ Maybe its better, if we use a ported version of this class so it can...
945
Himanshu Ranavat
himanshu_ran...
Feb 26, 2008 5:54 am
Hi, Douglas Crockford asked me to report the problem on this yahoo group. I am using CLDC 1.1 and MIDP 2.1. If the json.me package was meant to support this...
944
John Snelson
john_pc_snelson
Feb 25, 2008 3:18 pm
Hi all, I've developed a 1-1 (reversible) mapping from JSON into XML in order to be able to process JSON from XQuery. The current CVS version of XQilla ...