isISOControl

JVM
Native
1.0
fun Char.isISOControl(): Boolean
For JVM

Returns true if this character is an ISO control character.

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

fun main(args: Array<String>) {
//sampleStart
val chars = listOf('\u0000', '\u000E', '\u0009', '1', 'a')
val (isoControls, notIsoControls) = chars.partition { it.isISOControl() }
// some ISO-control char codes
println(isoControls.map(Char::toInt)) // [0, 14, 9]
// non-ISO-control chars
println(notIsoControls) // [1, a]
//sampleEnd
}
For Native

Returns true if this character is an ISO control character.