可能性のある複製:
それぞれのRubyの自動カウンター?
私は各ループにいる間に現在のインデックスを見つけたいです。どうすればいいですか?
X=[1,2,3]
X.each do |p|
puts "current index..."
end
X.each_with_index do |item, index|
puts "current_index: #{index}"
end
x.each_with_index { |v, i| puts "current index...#{i}" }