Lets say we have the string '\342\200\231' (same as "\\342\\200\\231"). What is a quick way to convert this string to "\342\200\231" (same as ’ Unicode character)?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
| show 2 more comments |
|
Proposal:
It depends on what assumptions you can make about your input. |
|||
|
What you appear to be asking is how to change a 12-character string into a three-character string.
is 12 characters long.
is three characters long; actually three bytes long, but in Ruby 1.8 it is about the same since strings are sequences of bytes anyway. Here is an EVIL answer for you (you did say quick), which takes advantage of
Sorry for the eval! I should probably give a more helpful answer... EDIT: Someone else just did. |
||||
|
|
'part of the actual string? Or are you trying to convert a single-quoted string into a double-quoted string (they're both the same thing, aside from double-quoted strings allowing more things like interpolation)? – birryree Oct 12 '11 at 15:49