arrow left
Back to Developer Education

Kotlin Range Operators

Kotlin Range Operators

Kotlin provides a wide range of solutions. Most of these solutions aim to make development easier and faster. Kotlin provides easier ways to perform specific actions. Since it is compiled the same way as Java, its functions and methods ensure your code is more efficient. <!--more--> The boilerplate code present in Java is also greatly reduced. We will address one of the solutions it offers: iterations. In this article, we will be taking a look at Kotlin ranges.

What are ranges

A range is a collection of values determined by a start and stop value. A simple example would be, the values between 1 and 5 form a range. That is, a range of 1 as the start value and 5 as the end value. Both the start and end values belong to the range too.

In other words, a range is an interval from the start value to the end value. We can use functions to create progressions and check for values in ranges. Let’s look at how we could use ranges.

Before we begin writing our code, you can use the following repl.it to run the functions. All you need to do is call the specific function in the main function. Then run the code and your output will be printed 🤓.

For instance, if we want to run the printNumRange function :

  fun main(args: Array<String>) {
      printNumRange()
  }

1. To Create a Progression

We can use the range operator to create an iterable range. A loop is created that goes through each item from the start value to the end value. This helps us to be sure of the number of iterations in the loop. It gives the developer more control over the loop.

In the replit, call the printNumRange function and run.

fun printNumRange(){
    for(i in 1..5) print("$i,")
}

The output should be:

1,2,3,4,5,

This loop goes from 1 to 5. That's not the only trick ranges can do. We can also create ranges using characters. We can create a range that starts from a specific letter in the alphabet to another. This can be from a to e.

You can go ahead and call the printCharRange function.

fun printCharRange(){
    for(char in 'a'..'e') print("$char,")
}

The expected output is:

a,b,c,d,e,

This is not easy to do this in Java. When implemented it will lead to a bunch of boilerplate being included and overall dirty code.

  String letters = "abcdefghijklmopqrstuvwxyz'";
  for (char c : letters.toCharArray()) {
      System.out.printf(c);
  }

First, we create a string of characters and assign letters to it. Then we convert letters to a CharArray. We then use forEach to get each of the characters. With Kotlin ranges, this is reduced to only a few lines with fewer requirements as seen in the replit.

2. To Create Reverse Loops

It was always a challenge to create a reverse loop as you would interchange values if we did it the old way. This could lead to confusion and it takes time to debug. An example of a reverse loop in Java would be:

Note: By the old way we mean, for(int i = 0, i <= maxValue, i++).

for (int i = 5; i >= 0; i--) {}

Ranges have a function called downTo that can be used to create a reverse progression. We can use it to loop from the end value backwards to the start point.

fun reverseNumRange(){
    for(i in 5.downTo(1)) print("$i,")
}

Once you run the reverseNumRange, the output should be:

5,4,3,2,1,

The same applies to the character range. It loops downwards to the start character. The function reverseCharRange is responsible for that.

fun reverseCharRange(){
    for(char in 'e'.downTo('a')) print("$char,")
}

The output is:

e,d,c,b,a,

3. To Generate Random Numbers

Sometimes you may want to generate random numbers within certain limits. This is virtually impossible in the old loop. A good option is to use Math class and call the random function. This however is limiting to the values it returns. It returns double values ranging from 0.0 to 1.0. In addition to that, you needed to add more calculations. It may be confusing to a developer who is not very experienced in Java. For example, to generate random numbers between 1 to 10, we would do the following:

int max = 10;
int min = 1;
int range = max - min + 1;
int random = (Math.random() * range) + min;

With ranges, it is as simple as creating the desired range and calling the random method. This makes it easy to get random numbers in any range.

fun getRandomInRange(){
    println("random value = ${(1..5).random()}")
}

In the getRandomInRange function, we are creating a range from 1 to 5 then getting a random number from it. We add the value to the output through Kotlin's string interpolation. You can add expressions as well as variables in strings.

4. To Check For Values in Ranges

Sometimes you may need to check if a value lies inside a particular range. For instance, after picking an image via intents in Android, we can check the dimensions.

Suppose, we need the image dimensions to lie in a specific range, we can use the range operator. An if statement is used instead. If the value is in range, the result is true and vice versa.

fun checkInRange(){
    val value = (1..10).random()
    if(value in 1..5) println("$value is in range")
    else println("$value is not in range")
}

In the checkInRange function, we are generating a random number between 1 and 10. Then we check if the value is between 1 and 5. We then print the result based on the comparison.

A sample output is:

5 is in range
7 is not in range

5. To Create Special Loops

With loops generated from ranges, we can define how the loop occurs. We may want it to skip one value as it loops through. A good use case is when you need to print either even or odd numbers.

In the case of an even number, you would define the starting point as 1 until the last point. Then you add the step keyword with the value of 2. It will loop from 1, skipping one value in the loop.

Here is an example of the rangeWithStep function.

fun rangeWithStep(){
    for(i in 1..10 step 2) print("$i,")
}

The output is:

1,3,5,7,9,

To print out the odd values, we would set the starting point as 2 and the step as 2 also.

2,4,6,8,10

With step, you have to be careful as the end point is printed based on the step. If the value is the one to be skipped, it is not printed as we have seen in the case of even numbers example above. 10 was not printed as it lies in the skipped values.

Conclusion

As you can see, Ranges can help us perform various tasks easier. It provides an easier and more efficient way to generate loops.

Fun fact: In Kotlin, you cannot create a loop the old way i.e. for(int i = 0, i <= maxValue, i++).

Instead, you use ranges, and knowing how they work would of great help to any developer looking to use ranges efficiently. The keyword is used in all loops as well. Go ahead and try out different ways to use Kotlin ranges to perform different tasks. 😎


Peer Review Contributions by: Saiharsha Balasubramaniam

Published on: Oct 26, 2020
Updated on: Jul 12, 2024
CTA

Start your journey with Cloudzilla

With Cloudzilla, apps freely roam across a global cloud with unbeatable simplicity and cost efficiency