Kotlin:从末端拆分字符串

时间:2018-07-25 19:14:31

标签: kotlin

我想将I_have_a_string分为I_have_astring。 Kotlin中是否有内置功能可以从末端拆分?以下是我现在正在做的事情

val words = myString.split("_")
val first = words.dropLast(1).joinToString("_")
val second = words.last()

1 个答案:

答案 0 :(得分:1)

看看这个:

val myString = "I_have_a_string"
val first = myString.substringBeforeLast("_")
val second = myString.substringAfterLast("_")

我认为它可以自我解释