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