isNullOrEmpty

Common
JVM
JS
Native
1.0
fun CharSequence?.isNullOrEmpty(): Boolean
(source)

Returns true if this nullable char sequence is either null or empty.

import java.util.Locale
import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
fun markdownLink(title: String?, url: String) =
    if (title.isNullOrEmpty()) url else "[$title]($url)"

// plain link
println(markdownLink(title = null, url = "https://kotlinlang.org")) // https://kotlinlang.org

// link with custom title
println(markdownLink(title = "Kotlin Language", url = "https://kotlinlang.org")) // [Kotlin Language](https://kotlinlang.org)
//sampleEnd
}