gpt4 book ai didi

Kotlin:去除第一个和最后一个字符

转载 作者:行者123 更新时间:2023-12-05 08:30:55 25 4
gpt4 key购买 nike

在 Kotlin 中,我需要从字符串中去除第一个和最后一个字符。这似乎出现了编译错误:

val MyPiece = str.substring(0, str.length - 1)

这里有什么问题吗?

最佳答案

您还可以:

val str = "hello"
val myPiece = str.drop(1).dropLast(1)
println(myPiece)

关于Kotlin:去除第一个和最后一个字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61493233/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com