Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 266 Bytes

DataStructor.md

File metadata and controls

16 lines (12 loc) · 266 Bytes

1. Integer

1.1. String to Integer

Do not use Integer.parseInt OR toInt, Cause it make exception

var convertedInt = 0

val parsedInt = str!!.toIntOrNull()
if (parsedInt != null) {
    convertedInt = parsedInt
} else {
    convertedInt = 0
}