For my rails site, there's some UI with only enough space to display the first 5 characters of a user's name. So I'm truncating the string to display as follows:
@user.name[0..4]
It works if the name is in English. But if @user.name contains Chinese (multibyte) characters, two problems arise. The first problem is that [0..4] only gives me 2 characters, not 5. The second problem is that sometimes the last character gets cut in half and garbage shows up on screen.
I was wondering if there's some relatively clean way to handle substring-ing multibyte characters in ruby?