Given the following constant:

RUSSIAN_LOWERCASE_ALPHABET = "абвгдеёжзийклмнопрстуфхцчшщъыьэюя"

When trying to get one letter:

content_tag(:span, RUSSIAN_LOWERCASE_ALPHABET[0])

Ruby 1.9.2 does the work as expected (I see the letter in a browser), while with Ruby 1.8.7 (my production environment) I see a number instead (e.g. 320).

I tried to change this to:

content_tag(:span, RUSSIAN_LOWERCASE_ALPHABET[0..0])

but it didn't help (I see a question mark in a diamond instead).

How could I solve this problem ?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

In Rails you have Multibyte support, just convert your string to wrapper class from Rails:

RUSSIAN_LOWERCASE_ALPHABET = "...".mb_chars

and then you can select character with RUSSIAN_LOWERCASE_ALPHABET[0].

link|improve this answer
Good to know about the Multibyte support! Thanks a lot! – Misha Moroshko Aug 31 '11 at 13:23
feedback

Your Answer

 
or
required, but never shown

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