๋ฐ์ํ
Intro
์๋ ํ์ธ์. ์ด๋ฒ์๊ฐ์๋ ์ฝํ๋ฆฐ์์ ํน์ ๋ฌธ์์ด์ ๊ธฐ์ค์ผ๋ก ์๋ฅด๋ ๋ฐฉ๋ฒ์ ๋ํด ์์๋ณด๊ฒ ์ต๋๋ค.
How to solve the problem
์ฝํ๋ฆฐ์์ ํน์ ๋ฌธ์์ด์ ๊ธฐ์ค์ผ๋ก ์๋ฅด๋ ๋ฐฉ๋ฒ์ ๋ค์ํ๋ฐ์, ์ ๋ split ํจ์๋ฅผ ์ฌ์ฉํด๋ดค์ต๋๋ค. ์๋์ ๊ฐ์ ์คํธ๋ง์ด ์๋ค๊ณ ๊ฐ์ ํด๋ด ์๋ค. ํด๋น ์คํธ๋ง์์ split ํจ์๋ฅผ ์ฌ์ฉํ์ฌ '-' ๋ฌธ์์ด ๊ธฐ์ค์ผ๋ก ์๋ผ์ค๋๋ค.
fun main() {
val string = "kotlin-typescript-javascript"
val result = string.split('-');
println(result)
println(result[0])
println(result[1])
println(result[2])
}
์ ์ฝ๋ ์คํ ๊ฒฐ๊ณผ๋ ๋ค์๊ณผ ๊ฐ์ต๋๋ค.
[kotlin, typescript, javascript]
kotlin
typescript
javascript
์ค์ ์คํ์์ผ๋ณด๊ณ ์ถ์ผ์ ๋ถ๋ค์ ์๋ ์ฌ์ดํธ ์ด์ฉํด์ฃผ์ธ์ :)
๋ฐ์ํ