Tagged Questions
23
votes
5answers
28k views
json parse error with double quotes
A double quote even if escaped is throwing parse error.
look at the code below
//parse the json in javascript
var testJson = '{"result": ["lunch", "\"Show\""] }';
var tags = JSON.parse(testJson); ...
2
votes
1answer
45 views
ASMX web method receiving unescaped double quote in parameter, JSON
My HTTP REQUEST contains a valid JSON string having the double quote in the middle of the name "jo\"hn" escaped as seen here (captured by Fiddler Web Debugger)
{"name":"firstName","value":"jo\"hn"},
...
1
vote
1answer
152 views
Ajax Json won't allow double qoutes results
I got a problem on this code. json wont allow double quote results. ex. if i have a result (A sad "Story") json wont parse it.
$('.loader1').show();
$.ajax({
url: ...
0
votes
1answer
128 views
Json.NET: Deserilization with Double Quotes
I am trying to deserialize a json string received as a response from the service. The client is Windows Phone 7, in C#. I am using Json .NET - James Newton-King deserializor to directly convert the ...
0
votes
2answers
180 views
Using php preg_replace to parse out target double quotes in JSON string
I've been beating my head on this one, and can't figure out a regexp to accomplish the following:
Input string (this is JSON data surrounded by lots of other JSON):
...