Duplicar posibles:
Automatic counter in Ruby for each?Averiguar índice actual en cada bucle (Rubí)
Quiero averiguar el índice actual mientras estoy en el cada bucle. ¿Cómo lo hago?
X=[1,2,3]
X.each do |p|
puts "current index..."
end
Duplicar posibles:
Automatic counter in Ruby for each?Averiguar índice actual en cada bucle (Rubí)
Quiero averiguar el índice actual mientras estoy en el cada bucle. ¿Cómo lo hago?
X=[1,2,3]
X.each do |p|
puts "current index..."
end
X.each_with_index do |item, index|
puts "current_index: #{index}"
end
duplicado de http://stackoverflow.com/questions/533837/automatic-counter-in-ruby-for-each –