本文方法及代码示例基于Kotlin 2.1.20 Released
commonSuffixWith
所在包 kotlin.text.commonSuffixWith
,其相关用法介绍如下:
用法:
kotion
fun CharSequence.commonSuffixWith(
other: CharSequence,
ignoreCase: Boolean = false
): String
返回最长的字符串 suffix
使得这个 char 序列和 other char 序列都以此后缀结尾,注意不要拆分代理对。如果 this 和 other 没有共同的后缀,则返回空字符串。
代码示例:
kotlin
import java.util.Locale
import kotlin.test.*
fun main(args: Array<String>) {
//sampleStart
println("Hot_Tea".commonSuffixWith("iced_tea")) // ea
println("Hot_Tea".commonSuffixWith("iced_tea", true)) // _Tea
println("Hot_Tea".commonSuffixWith("Hot_Coffee")) //
//sampleEnd
}
// 输出
ea
_Tea
参数:ignoreCase
-true
匹配字符时忽略字符大小写。默认false
.
相关方法
- Kotlin contentToString用法及代码示例
- Kotlin dropWhile用法及代码示例
- Kotlin distinct用法及代码示例
- Kotlin code用法及代码示例
- Kotlin Map:mapOf()用法及代码示例
- Kotlin distinctBy用法及代码示例
- Kotlin digitToChar用法及代码示例
- Kotlin ifBlank用法及代码示例
- Kotlin all用法及代码示例
- Kotlin digitToIntOrNull用法及代码示例
- Kotlin dropLast用法及代码示例
- Kotlin dropLastWhile用法及代码示例
- Kotlin associateBy用法及代码示例
- Kotlin groupingBy用法及代码示例
- Kotlin groupBy用法及代码示例
- Kotlin getOrElse用法及代码示例
- Kotlin getOrPut用法及代码示例