commonSuffixWith所在位置是kotlin.text.commonSuffixWith,其相關用法介紹如下。

用法:

fun CharSequence.commonSuffixWith(
    other: CharSequence, 
    ignoreCase: Boolean = false
): String

返回最長的字符串 suffix 使得這個 char 序列和 other char 序列都以此後綴結尾,注意不要拆分代理對。如果 this 和 other 沒有共同的後綴,則返回空字符串。

例子:

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.