"Some String \xAE".to_json gives an illegal/malformed error?

B

Blackie

Call me crazy, but I must be missing some fundamental understanding
here.
From what I can read on the JSON gem located here (http://
json.rubyforge.org/) this should be working but I'm getting a
JSON::GeneratorError. Any insight you may have is appreciated.

Given this:

require 'json'
=> true

s = ["MyStuff \xAE"]
=> ["MyStuff \256"]

s.to_json
JSON::GeneratorError: source sequence is illegal/malformed
from (irb):16:in `to_json'
from (irb):16

Since that string has a unicode char in it, should it not be escape to
\uXXXX when re convert to JSON?

Any help is appreciated.
 
B

Blackie

Never mind. Encoding on the DB is defaulting to latin-1. What I
thought was unicode strings weren't. *Sigh* :)


Call me crazy, but I must be missing some fundamental understanding
here.
From what I can read on the JSON gem located here (http://

json.rubyforge.org/) this should be working but I'm getting a
JSON::GeneratorError. Any insight you may have is appreciated.

Given this:

require 'json'
=> true

s = ["MyStuff \xAE"]
=> ["MyStuff \256"]

s.to_json
JSON::GeneratorError: source sequence is illegal/malformed
from (irb):16:in `to_json'
from (irb):16

Since that string has a unicode char in it, should it not be escape to
\uXXXX when re convert to JSON?

Any help is appreciated.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,767
Messages
2,569,572
Members
45,045
Latest member
DRCM

Latest Threads

Top