randomOrNull

Common
JVM
JS
Native
1.3
@ExperimentalStdlibApi fun CharSequence.randomOrNull(): Char?

Returns a random character from this char sequence, or null if this char sequence is empty.

Common
JVM
JS
Native
1.3
@ExperimentalStdlibApi fun CharSequence.randomOrNull(
    random: Random
): Char?

Returns a random character from this char sequence using the specified source of randomness, or null if this char sequence is empty.