반응형
각 루프의 현재 인덱스 찾기(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}" }
언급URL : https://stackoverflow.com/questions/2846313/finding-out-current-index-in-each-loop-ruby
반응형
'source' 카테고리의 다른 글
XlsxWriter를 사용하여 맨 위 행과 첫 번째 열을 고정하는 방법은 무엇입니까? (0) | 2023.07.01 |
---|---|
Spring Web Client에서 응답 json을 가져오는 방법 (0) | 2023.07.01 |
Oracle DB & SQL Developer: "Error report: execution completed with warning" - 경고를 보려면 어떻게 해야 합니까? (0) | 2023.07.01 |
"#define for if (false) {} other for"에 사용할 수 있는 것은 무엇입니까? (0) | 2023.07.01 |
소켓 프로그래밍 - listen()과 accept()의 차이점은 무엇입니까? (0) | 2023.07.01 |