stringFromUtf8
fun ByteArray.stringFromUtf8(): String
fun ByteArray.stringFromUtf8(
start: Int = 0,
size: Int = this.size
): String
Converts an UTF-8 array into a String. Replaces invalid input sequences with a default character.
fun ByteArray.stringFromUtf8(): String
fun ByteArray.stringFromUtf8(
start: Int = 0,
size: Int = this.size
): String
Converts an UTF-8 array into a String. Replaces invalid input sequences with a default character.