[Rails] Re: Skip index in array.each_with_index loop
On Thursday, 23 May 2013 11:24:36 UTC+2, Ruby-Forum.com User wrote:
Can anyone help me on how to skip index in ARRAY.each_with_index loop?
Please look at below case:
In a ARRAY.each_with_index loop, I would like increase the index by 10
whenever a condition is met.
arr is array of numbers from 0 to 50
arr.each_with_index do |x,i|
if i % 10 == 0
puts "#{x} at #{i}"
i = i+10 //index increased by 10
end
end
The output should be:
10 at 10
30 at 30
50 at 50
Thanks
Ajit
Could you explain it in a more clear way, "whenever a condition is met". If you just want to select the elements that meet some condition, use one of the following Array methods:
----
Posted via http://www.ruby-forum.com/.
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/f9ddb68c-86b8-4cc1-a0da-9b555a594880%40googlegroups.com?hl=en-US.
For more options, visit https://groups.google.com/groups/opt_out.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home