startsWith
fun String.startsWith(
prefix: String,
ignoreCase: Boolean = false
): Boolean
(Common source) (JVM source) (JS source) (Native source)
Returns true
if this string starts with the specified prefix.
fun String.startsWith(
prefix: String,
startIndex: Int,
ignoreCase: Boolean = false
): Boolean
(Common source) (JVM source) (JS source) (Native source)
Returns true
if a substring of this string starting at the specified offset startIndex starts with the specified prefix.
fun CharSequence.startsWith(
prefix: CharSequence,
startIndex: Int,
ignoreCase: Boolean = false
): Boolean
(source)
Returns true
if a substring of this char sequence starting at the specified offset startIndex starts with the specified prefix.