Answers for "how to change a string to an int in kotlin"

CSS
8

kotlin string to int

val myStringNumber: String = "100";
val number: Int = myStringNumber.toInt()
Posted by: Guest on May-20-2020
0

how to convert string to int android studio kotlin

fun main(args: Array<String>) {
    for (str in args) {
        try {
            val parsedInt = str.toInt()
            println("The parsed int is $parsedInt")
        } catch (nfe: NumberFormatException) {
            // not a valid int
        }
    }
}
Posted by: Guest on August-16-2021

Code answers related to "how to change a string to an int in kotlin"

Browse Popular Code Answers by Language