Support for Unicode strings

I am rather new to ruby but was considering to use it for my next
project. However, support for Unicode strings would be essential. This
includes the correct handling of unicode strings in regular expressions,
in IO operations etc. How is this best done in Ruby?

On 11/01/06, RHaus [email protected] wrote:

I am rather new to ruby but was considering to use it for my next
project. However, support for Unicode strings would be essential. This
includes the correct handling of unicode strings in regular expressions,
in IO operations etc. How is this best done in Ruby?

Please do a search on this. The answers to these questions have been
given a dozen times. A quick summary:

  1. Ruby Strings are byte vectors. Eith $KCODE = ‘u’, you get some
    additional capabilities with Regexen for Unicode (UTF-8).
  2. As long as you’re not actually looking for foo[0] to give you the
    first character (Unicode or otherwise), you’ll be okay.

Ruby does just fine with most applications of Unicode. Ruby 2.0 will
include m17n Strings that will make it even better, not just for
Unicode.

-austin