Program to check for Empty, Blank or NULL string in Kotlin
package com.includehelp.basic
//Main Function, entry Point of Program
fun main(args: Array<String>) {
///Nullable String
val s1: String?=null
//Empty String
val s2: String=""
//Blank String, Contained only white spaces
val s3=" "
println("String s1 is isNullOrEmpty : ${s1.isNullOrEmpty()}")
println("String s2 is isEmpty : ${s2.isEmpty()}")
println("String s3 is isBlank : ${s3.isBlank()}")
}
Output
String s1 is isNullOrEmpty : true
String s2 is isEmpty : true
String s3 is isBlank : true
Program to check for Empty, Blank or NULL string in Kotlin
Output
need an explanation for this answer? contact us directly to get an explanation for this answer