[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Support for Unicode strings

RHaus

1/11/2006 1:05:00 PM

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?

--
Posted via http://www.ruby-....


1 Answer

Austin Ziegler

1/11/2006 3:05:00 PM

0

On 11/01/06, RHaus <roman.hausner@gmail.com> 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
--
Austin Ziegler * halostatue@gmail.com
* Alternate: austin@halostatue.ca