I'm just wondering what applications it has. I believe in 1.9 the prefix ? would return the string version of that character.
?a #=> "a"
?\t #=> "\t"
Is this just shorthand for 'a' or '\t'?
|
|
|
It's mainly for backwards compatibility. In versions prior to 1.9, So, if you wanted to check, for example, if the third character of a string was the letter 'a' you would do
In Ruby 1.9, strings are no longer treated as an array of fixnums but as an iterator of characters (single-character strings, actually). As a result, the above code would no longer work: Therefore, |
||||
|
|
|
in ruby 1.8 and earlier
would return the ASCII version of 'a' char. in 1.9 it just returns the string ( just as you've assumed ) |
|||
|
|
|
You are correct, you get the string value of the characters. It was previously used to get the ASCII value of the characters. |
|||
|
|