216
votes

How to get the index in a for each loop? I want to print numbers for every second iteration

For example

for (value in collection) {
    if (iteration_no % 2) {
        //do something
    }
}

In java, we have the traditional for loop

for (int i = 0; i < collection.length; i++)

How to get the i?

7

7 Answers

457
votes

In addition to the solutions provided by @Audi, there's also forEachIndexed:

collection.forEachIndexed { index, element ->
    // ...
}
143
votes

Use indices

for (i in array.indices) {
    print(array[i])
}

If you want value as well as index Use withIndex()

for ((index, value) in array.withIndex()) {
    println("the element at $index is $value")
}

Reference: Control-flow in kotlin

32
votes

try this; for loop

for ((i, item) in arrayList.withIndex()) { }
26
votes

Alternatively, you can use the withIndex library function:

for ((index, value) in array.withIndex()) {
    println("the element at $index is $value")
}

Control Flow: if, when, for, while: https://kotlinlang.org/docs/reference/control-flow.html

9
votes

It seems that what you are really looking for is filterIndexed

For example:

listOf("a", "b", "c", "d")
    .filterIndexed { index, _ ->  index % 2 != 0 }
    .forEach { println(it) }

Result:

b
d
5
votes

Ranges also lead to readable code in such situations:

(0 until collection.size step 2)
    .map(collection::get)
    .forEach(::println)
3
votes

Working Example of forEachIndexed in Android

Iterate with Index

itemList.forEachIndexed{index, item -> 
println("index = $index, item = $item ")
}

Update List using Index

itemList.forEachIndexed{ index, item -> item.isSelected= position==index}