In the Ruby Koans, you have to fill in the blank for what represents string[1] below. Why is the answer 97?

def test_you_can_get_a_single_character_from_a_string
  string = "Bacon, lettuce and tomato"
  assert_equal ___ , string[1]
end
link|improve this question

Where did you get the koan from? That koan got changed in March. – Andrew Grimm Oct 5 '11 at 22:00
What were you expecting the answer to be? – Karl Knechtel Oct 5 '11 at 23:29
Andrew, koans.heroku.com – Simpleton Oct 6 '11 at 9:03
Karl, wasn't expecting a decimal but 'a' itself. – Simpleton Oct 6 '11 at 9:03
feedback

3 Answers

up vote 4 down vote accepted

97 is the ASCII decimal representation of 'a', which is the the letter located at string[1].

link|improve this answer
2  
And in Ruby 1.9, the result of string[1] is "a". – molf Oct 5 '11 at 14:09
Yup, in Ruby 1.9 this koan is no longer correct: $ irb 1.9.2p290 :001 > string = "aaaaa" => "aaaaa" 1.9.2p290 :002 > string[1] => "a" Ruby 1.8: $ irb >> string = "aaaaa" => "aaaaa" >> string[1] => 97 – stantonk Dec 26 '11 at 5:13
feedback

97 is the ASCII value (in decimal) for the lowercase a.

link|improve this answer
feedback

string[1] will give you the second character of string, the first being 0. This is converted to an integer, 'a' being represented as 97 in ASCII. So this gives you 97.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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