kotlin 文字列(string)の特定の範囲を置換するサンプル

環境
Windows11 pro 64bit
java 19.0.1
kotlin 1.7.20-release-201

構文
//text=対象の文字列,
//start=範囲の始まりの位置, end=範囲の終わりの位置, replace=置換後の文字列
val result = text.replaceRange(start, end, replace)
replaceRange()の第1引数に範囲の始まりの位置、第2引数に範囲の終わりの位置、
第3引数に置換後の文字列を指定します。

使用例

fun main() {
       val text = "STUDYSKILL"
    
           
    val result = text.replaceRange(2, 5, "***")
    
    println(result)
    
}

実行結果
ST***SKILL

Kotlin

Posted by arkgame