특정 문자로 시작/종료하는지 확인
fun main() {
var str = "start..Hi..end"
println(str.startsWith("start"))//true
println(str.endsWith("end"))//true
}
'Kotlin > 문법' 카테고리의 다른 글
Scope Functions (영역함수) (0) | 2024.03.07 |
---|---|
Kotlin - repeat (0) | 2024.02.19 |
Kotlin - StringBuilder (0) | 2024.02.19 |
Kotlin - 정규식 (1) | 2024.02.16 |
Kotlin - Scope Functions( let, run, with, apply, also ) (0) | 2024.02.14 |