Closed GoogleCodeExporter closed 8 years ago
I don't think this is a bug in the JSON parser in strict mode. According to
the RFC, whitespace is defined as:
ws = *(
%x20 / ; Space
%x09 / ; Horizontal tab
%x0A / ; Line feed or New line
%x0D ; Carriage return
)
Character 160 is a non-breaking space, and not valid JSON whitespace.
However, if the parser is used in non-strict mode then I can deal with this
better by including the non-
breaking space as whitespace.
Original comment by darron.schall
on 2 Aug 2009 at 8:10
Fixed in r93
Original comment by darron.schall
on 3 Aug 2009 at 12:18
Original issue reported on code.google.com by
oma...@gmail.com
on 29 Jul 2009 at 10:19