I need to write a loop that does something like:
if i (1..10)
do thing 1
elsif i (11..20)
do thing 2
elsif i (21..30)
do thing 3
etc...
But so far have gone down the wrong paths in terms of syntax. Any help would be much appreciated.
|
|
I need to write a loop that does something like:
But so far have gone down the wrong paths in terms of syntax. Any help would be much appreciated.
|
||
|
|
|
|
This is just basic syntax in most languages, there may be another "Ruby" way of doing it that I am not aware of. |
||||||||
|
|
|
Use the
|
||||
|
|
|
if you still wanted to use ranges...
|
||
|
|
|
|
As @Baldu said, use the === operator or use case/when which internally uses === :
|
||
|
|
|
|
A more dynamic answer, which can be built in Ruby:
So, in this case, the "ranges" are really just fenced in with nils in order to catch the boundary conditions. |
||
|
|