Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I encode a string (iso to utf-8 for example) in Ruby on Rails, using Ruby 1.8.7 ?

share|improve this question
1.8 isn't encoding-aware, so you'd have to guess the encoding, and trust me, you don't want that. Upgrade to 1.9 – Tass Apr 25 '12 at 16:28

1 Answer

Use toutf8 method.

"my string".toutf8
share|improve this answer
I'll try it here, thanx =] – Lucas Renan Nov 13 '09 at 15:17
Any idea how to encode to another (not utf8) encoding? – Devenv Jun 24 '10 at 18:14
Use ICONV or Ruby 1.9 methods. – Simone Carletti Jun 25 '10 at 7:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.