vote up 5 vote down star

In Ruby, trying to print out the individual elements of a String is giving me trouble. Instead of seeing each character, I'm seeing their ASCII values instead:

>> a = "0123"
=> "0123"
>> a[0]
=> 48

I've looked online but can't find any way to get the original "0" back out of it. I'm a little new to Ruby to I know it has to be something simple but I just can't seem to find it.

flag

8 Answers

vote up 3 vote down check

Or you can convert the integer to its character value:

a[0].chr
link|flag
vote up 0 vote down

To summarize:

This behavior will be going away in version 1.9, in which the character itself is returned, but in previous versions, trying to reference a single character of a string by it's character posision will return its character value (so "ABC"[2] returns 67)

There are a number of methods that return a range of characters from a string (see the Ruby docs on the String slice method) All of the following return "C":

"ABC"[2,1] 
"ABC"[2..2]
"ABC".slice(2,1)

I find the range selector to be the easiest to read. Can anyone speak to whether it is less efficient?

link|flag
vote up 1 vote down

The [,] operator returns a string back to you, it is a substring operator, where as the [] operator returns the character which ruby treats as a number when printing it out.

link|flag
vote up -1 vote down

Wow, thanks for the great answers guys! I appreciate the quick response a lot.

link|flag
vote up 1 vote down

@Chris,

That's just how [] and [,] are defined for the String class.

Check out the String API.

link|flag
vote up 4 vote down

I believe this is changing in Ruby 1.9 such that "asdf"[2] yields "d" rather than the character code

link|flag
vote up -1 vote down

So simple! Thanks ... -.-. -.. ..-. ! Out of curiosity, why does that work?

link|flag
vote up 4 vote down

You want a[0,1] instead of a[0].

link|flag

Your Answer

Get an OpenID
or

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