What's the sensible way of saying this.
if @thing == "01" or "02" or "03" or "04" or "05"
(The numbers are contained in a column of datatype string.)
|
What's the sensible way of saying this.
(The numbers are contained in a column of datatype string.) |
||||
|
Make an array and use
If the values really are all consecutive, you can use a range like
|
|||||||||||||||
|
|
Or use a case statement:
Two variations of this approach:
Because |
||||
if @thing == "01" || @thing == "02" || ...– Niklas B. Apr 21 '12 at 15:15and/oris not the same as&&/||in Ruby. – Andrew Marshall Apr 21 '12 at 15:18