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

Go
7

kotlin string to int

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

kotlin string to int

val mystring: String = "999"
try {
    val parsedValue = mystring.toInt()
    println("The parsed integer value is $parsedInt")
} catch (nfe: NumberFormatException) {
    // not a valid int
}
Posted by: Guest on April-21-2021

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

Browse Popular Code Answers by Language