Kotlin program to check for Empty, Blank or NULL string

bookmark

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