code:

 c = 0  
 items.each { |i|  
   puts i.to_s    
   # if c > 9 escape the each iteration early - and do not repeat  
   c++  
 }

I want to grab the first 10 items then leave the "each" loop.

What do I replace the commented line with? is there a better approach? something more Ruby idiomatic?

link|improve this question

71% accept rate
I suggest nimrodm's answer that uses take: stackoverflow.com/questions/1568288/… – Robert K Oct 14 '09 at 19:36
feedback

7 Answers

up vote 23 down vote accepted

While the break solution works, I think a more functional approach really suits this problem. You want to take the first 10 elements and print them so try

items.take(10).each { |i| puts i.to_s }
link|improve this answer
I have always liked FP, cool! – khelll Oct 14 '09 at 19:35
7  
Shorter: puts items.take(10) – Telemachus Oct 14 '09 at 19:45
I tried Googling for 'ruby take method' just now and couldn't find a reference to what module take is in. Where is it in the API? – Sarah Vessels Oct 14 '09 at 19:53
1  
@Sarah: ri Array#take – Telemachus Oct 14 '09 at 19:56
1  
I suppose I need to upgrade my Ruby version: Nothing known about Array#take – Chris Lutz Oct 14 '09 at 20:02
show 5 more comments
feedback

There is no ++ operator in Ruby. It's also convention to use do and end for multi-line blocks. Modifying your solution yields:

c = 0  
items.each do |i|  
  puts i.to_s    
  break if c > 9
  c += 1 
end

Or also:

items.each_with_index do |i, c|  
  puts i.to_s    
  break if c > 9
end

See each_with_index and also Programming Ruby Break, Redo, and Next.

Update: Chuck's answer with ranges is more Ruby-like, and nimrodm's answer using take is even better.

link|improve this answer
Thanks. Answer and +1. Wow I was way off on the initial syntax. – brun Oct 14 '09 at 19:07
You weren't far off, really: the only invalid part of your answer was the ++. Curly braces for blocks will work, it's just not preferred for multi-line blocks; see stackoverflow.com/questions/533008/… – Sarah Vessels Oct 14 '09 at 19:12
feedback

break works for escaping early from a loop, but it's more idiomatic just to do items[0..9].each {|i| puts i}. (And if all you're doing is literally printing the items with no changes at all, you can just do puts items[0..9].)

link|improve this answer
I'd have written it as: puts items[0..9].join("\n") – Bob Aman Oct 14 '09 at 21:04
feedback

Another option would be

items.first(10).each do |i|
  puts i.to_s
end

That reads a little more easily to me than breaking on an iterator, and first will return only as many items as available if there aren't enough.

link|improve this answer
feedback

Another variant:

puts items.first(10)

Note that this works fine with arrays of less than 10 items:

>> nums = (1..5).to_a
=> [1, 2, 3, 4, 5]
>> puts nums.first(10)
1
2
3
4
5

(One other note, a lot of people are offering some form of puts i.to_s, but in such a case, isn't .to_s redundant? puts will automatically call .to_s on a non-string to print it out, I thought. You would only need .to_s if you wanted to say puts 'A' + i.to_s or the like.)

link|improve this answer
feedback

Does this look like what you want?

10.times { |i|
  puts items[i].to_s
}
link|improve this answer
That would work, but I won't always be sure that the source has at least 10 items. – brun Oct 14 '09 at 19:13
Ah. You can add break if items[i] == nil but at this point each_with_index is looking like what you should be using. – Chris Lutz Oct 14 '09 at 19:15
feedback
items.each_with_index { |i, c| puts i and break if c <= 9 }
link|improve this answer
That will break after the first item. – Chuck Oct 14 '09 at 19:25
Not really, how did u test it? – khelll Oct 14 '09 at 19:32
@Khelll: is this due to lazy evaluation of and? It works, but it's a bit too clever for me. My brain keeps wanting >= since I see "and break if" together. – Telemachus Oct 14 '09 at 20:05
Ok, now I see it: puts returns nil when it works. Thus, as long as the index is equal to or less than 9, the puts happens, nil is returned and the second half of the and is not evaluated. When the index hits 10, the puts doesn't happen and the second half of the and gets evaluated. At that point, boom: break. – Telemachus Oct 14 '09 at 20:24
The cool thing is that it reads so natural.... – khelll Oct 14 '09 at 21:34
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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