I came across this piece of ruby code:
str[-1]==??
What is the double question mark all about? Never seen that before.
|
I came across this piece of ruby code:
What is the double question mark all about? Never seen that before. |
|||
|
|
|
Ruby 1.8 has a ?-prefix syntax that turns a character into its ASCII code value. For example,
To convert back, you can use the
In Ruby 1.9, the
|
|||||
|
|
As Ryan says, the
so the following wouldn't test if the last character of a string was the letter 'o'
but this would:
and (provided you know what the ? does!) this is slightly clearer than
|
||||