replaceRange

Common
JVM
JS
Native
1.0
fun CharSequence.replaceRange(
    startIndex: Int,
    endIndex: Int,
    replacement: CharSequence
): CharSequence

Returns a char sequence with content of this char sequence where its part at the given range is replaced with the replacement char sequence.

Parameters

startIndex - the index of the first character to be replaced.

endIndex - the index of the first character after the replacement to keep in the string.

Common
JVM
JS
Native
1.0
fun String.replaceRange(
    startIndex: Int,
    endIndex: Int,
    replacement: CharSequence
): String

Replaces the part of the string at the given range with the replacement char sequence.

Parameters

startIndex - the index of the first character to be replaced.

endIndex - the index of the first character after the replacement to keep in the string.

Common
JVM
JS
Native
1.0
fun CharSequence.replaceRange(
    range: IntRange,
    replacement: CharSequence
): CharSequence

Returns a char sequence with content of this char sequence where its part at the given range is replaced with the replacement char sequence.

The end index of the range is included in the part to be replaced.

Common
JVM
JS
Native
1.0
fun String.replaceRange(
    range: IntRange,
    replacement: CharSequence
): String

Replace the part of string at the given range with the replacement string.

The end index of the range is included in the part to be replaced.