How do I write a switch statement in Ruby?
|
|
Ruby uses the case expression instead.
The comparison is done by comparing the object in the when-clause with the object in the case-clause using the |
|||||||||||||||||||||
|
|
That operator works as expected with literals, but not with classes:
This means that if you want to do a
Will print "It is not a string". Fortunately, this is easily solved. The
I hit this problem today while looking for an answer, and this was the first appearing page, so I figured it would be useful to others in my same situation. |
|||||||||
|
|
it is done by case in Ruby. Also see this article in Wikipedia. quoted:
another example:
On around page 123 (I am using Kindle) of The Ruby Programming Lanugage (1st Edition, O'Reilly) , it says, the |
|||||||
|
case...whenTo add more examples to Chuck's answer: With parameter:
Without parameter:
Please, be aware of the issue that kikito warns. |
|||||
|
|
|
You can use regular expressions, such as finding a type of string:
Ruby's |
|||||||||||||
|
|
Please don't. Use polymorphism instead. |
|||
|