Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I write a switch statement in Ruby?

share|improve this question
121  
Legitimate question. Googlability isn't a reason for downvoting. – Andrew Grimm Aug 12 '09 at 4:34
30  
@Andrew -- agreed. I found this question via Google and @Chuck's answer was better than I'd hoped for. – Drew Noakes Jan 23 '10 at 23:55
6  
so it is a legit question... and why on earth does it really deserve 29 votes? What makes the question so special? – 動靜能量 Apr 11 '11 at 13:12
54  
@動靜能量: It doesn't have to be clever, just useful. – Andrew Grimm Apr 17 '11 at 23:50
11  
I open this question from time to time, definitely useful. – Dolphin Aug 17 '12 at 11:36
show 4 more comments

6 Answers

up vote 576 down vote accepted

Ruby uses the case expression instead.

case a
when 1..5
  puts "It's between 1 and 5"
when 6
  puts "It's 6"
when String
  puts "You passed a string"
else
  puts "You gave me #{a} -- I have no idea what to do with that."
end

The comparison is done by comparing the object in the when-clause with the object in the case-clause using the === operator. That is, it does 1..5 === a and String === a, not a === 1..5. This allows for the sophisticated semantics you see above, where you can use ranges and classes and all sorts of things rather than just testing for equality.

share|improve this answer
53  
You can also test using regexes, which I find really useful. – Xiong Chiamiov Aug 28 '10 at 0:43
7  
In Ruby 1.9, using lambdas can be useful too. – Marc-André Lafortune Feb 21 '12 at 19:26
1  
2  
You can also do regex on the passed argument: when /thisisregex/ next line puts "This is the found match nr. 1 #{$1}" end – Cort3z Jan 20 at 15:34
2  
@Supuhstar: No, you don't. – Chuck Jan 28 at 20:13
show 2 more comments

case...when behaves a bit unexpectedly when handling classes. This is due to the fact that it uses the === operator.

That operator works as expected with literals, but not with classes:

1 === 1
 => true
Fixnum === Fixnum
 => false

This means that if you want to do a case ... when over an object's class, this will not work:

obj = 'hello'
case obj.class
when String
  print('It is a string')
when Fixnum
  print('It is a number')
else
  print('It is not a string')
end

Will print "It is not a string".

Fortunately, this is easily solved. The === operator has been defined so that it returns true if you apply it over a class and an instance of that class. In short, the code above can be fixed by removing the .class:

obj = 'hello'
case obj  # was case obj.class
when String
  print('It is a string')
when Fixnum
  print('It is a number')
else
  print('It is not a string')
end

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.

share|improve this answer
1  
Nonono, the best solution is understanding how case works with classes and instances and just using it correctly (second code on my answer) – kikito Aug 2 '11 at 13:51
3  
I've been coding in Ruby for more than two years, and didn't know this. Thanks! – Chthonic Project Jul 5 '12 at 6:39

it is done by case in Ruby. Also see this article in Wikipedia.

quoted:

case n
when 0 
  puts 'You typed zero'
when 1, 9 
  puts 'n is a perfect square'
when 2 
  puts 'n is a prime number'
  puts 'n is an even number'
when 3, 5, 7 
  puts 'n is a prime number'
when 4, 6, 8 
  puts 'n is an even number'
else              
  puts 'Only single-digit numbers are allowed'
end

another example:

score = 70

result = case score
   when 0..40 then "Fail"
   when 41..60 then "Pass"
   when 61..70 then "Pass with Merit"
   when 71..100 then "Pass with Distinction"
   else "Invalid Score"
end

puts result

On around page 123 (I am using Kindle) of The Ruby Programming Lanugage (1st Edition, O'Reilly) , it says, the then keyword following the when clauses can be replaced with a newline or semicolon. (just like in the if then else syntax) (Ruby 1.8 also allows a colon in place of then... But this syntax is no longer allowed in Ruby 1.9)

share|improve this answer
7  
when (-1.0/0.0)..-1 then "Epic fail" – Andrew Grimm Apr 17 '11 at 23:49
Very thorough, thank you. – sholsinger Jun 20 '11 at 2:38

case...when

To add more examples to Chuck's answer:

With parameter:

case a
when 1
  puts "Single value"
when 2, 3
  puts "One of comma-separated values"
when 4..6
  puts "One of 4, 5, 6"
when 7...9
  puts "One of 7, 8, but not 9"
else
  puts "Any other thing"
end

Without parameter:

case
when b < 3
  puts "Little than 3"
when b == 3
  puts "Equal to 3"
when b === (1..10)
  puts "Something in closed range of [1..10]"
end

Please, be aware of the issue that kikito warns.

share|improve this answer
Did you mean to make an assignment of 3 to b? – JD. Aug 30 '12 at 15:29
@JD. No, I meant to compare b to 3. Fixed, thanks. – mmdemirbas Aug 30 '12 at 15:39

You can use regular expressions, such as finding a type of string:

case foo
when /^(true|false)$/
   puts "Given string is boolean"
when /^[0-9]+$/ 
   puts "Given string is integer"
when /^[0-9\.]+$/
   puts "Given string is float"
else
   puts "Given string is probably string"
end

Ruby's case will use the equality operand === for this (thanks @JimDeville). Additional information is available at "Ruby Operators". This also can be done using @mmdemirbas example (without parameter), only this approach is cleaner for these types of cases.

share|improve this answer
Ruby technically uses === not =~, which is usually the same, but since Ruby is open, it isn't always – Jim Deville Apr 20 at 22:43
@JimDeville that is not correct. You take any of when conditions from my example and run them with === you will not get true return. – Dolphin Apr 21 at 11:47
1  
See gist.github.com/jredville/5446618, the spec of a case statement is that they use === for comparison (case o; when c;...;end uses c === o not o === c) – Jim Deville Apr 23 at 19:27
1  
@JimDeville I stand corrected. Answer has been edited per your comments, thank you. – Dolphin Apr 23 at 21:34

Please don't. Use polymorphism instead.

http://www.antiifcampaign.com

share|improve this answer
While nested case and if statements can often become an ugly mess, it does not follow that all conditional logic will produce an ugly mess. Sometimes you need the Strategy/Policy pattern, sometimes you just need a branch. – Andy Davis May 10 at 21:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.