Search code examples
jqueryruby-on-railsjsonruby-on-rails-2

Rails JSON non-standard characters


I have a string within my database that contains this sample substring.

string = "\357\277\275\357\277\275"

When I try to convert this to JSON, I get a lot of these bad boys (since they are non-ASCII characters).

Then, when jQuery tries to parse the JSON, it just craps out and gives me a SyntaxError: Unexpected Token

Here are three possible solutions.

  1. Convert the string into JSON acceptable values
  2. Remove the offending characters
  3. Replace the string with a message such as "Invalid Characters"

I am fine with any of these, but don't know how to go about them. Thoughts?


Solution

  • In order to strip unprintable characters from strings in Ruby, you can use the following regex.

    "your_string".gsub!(/[^[:print:]]/, '')