repeat

Common
JVM
JS
Native
1.0
fun CharSequence.repeat(n: Int): String
For JVM, Native

Returns a string containing this char sequence repeated n times.

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
println("Word".repeat(4)) // WordWordWordWord
println("Word".repeat(0)) //
//sampleEnd
}

Exceptions

IllegalArgumentException - when n < 0.

For JS

Returns a string containing this char sequence repeated n times.

Exceptions

IllegalArgumentException - when n < 0.