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

In Ruby, how do I skip a loop in a .each loop, similiar to 'continue'

share|improve this question
I'm pretty sure you can't, but I'll let a real rubyist answer that. – Jonathan Sterling Nov 19 '10 at 23:37
2  
@Jonathan: nope, you can! – Arlen Nov 19 '10 at 23:48

2 Answers

up vote 92 down vote accepted

Use next:

(1..10).each do |a|
  next if a.even?
  puts a
end

prints:

1
3   
5
7
9

For additional coolness check out also redo and retry.

Works also for friends like times, upto, downto, each_with_index, select, map and other iterators (and more generally blocks).

For more info see http://ruby-doc.org/docs/ProgrammingRuby/html/tut_expressions.html#UL.

share|improve this answer
3  
And break.... – Nakilon Nov 19 '10 at 23:46
Yes, though break isn't that cool (and is a lot more useful ;). – Jakub Hampl Nov 19 '10 at 23:47

next - it's like return, but for blocks! (So you can use this in any proc/lambda too.)

That means you can also say next n to "return" n from the block.

You can mix these to interesting effect:

def my_fun
  [1, 2, 3].each do |e|
    return "Hello." if e == 2
    # do some computation ...
  end
  "xyz"
end

This will return "Hello.", not "xyz", because the return keyword here matches with the outer def, not the inner block. Use next here to skip the computation, but not to return from the whole method.

share|improve this answer

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.