From: "Iñaki Baz Castillo" Date: 2008-05-26T19:27:56+09:00 Subject: Why "ABCDE"[0] returns an integer instead of 'A' ? Hi, I cannot understand how a high level language as Ruby doesn't handle a simple thing as C does with strings: in C: string = "ABCDE" string[0] => 'A' in Ruby: string = "ABCDE" string[0] => 65 Why 65? it's the Ascii value of A: puts "\x65" => "e" PD: I've realized when writting this mail that Ruby 1.9 already implement this "feature". -- Iñaki Baz Castillo