Package-level declarations

Functions

Link copied to clipboard

Extension function to capitalize the first letter of a string.

Link copied to clipboard
fun String.containsAny(vararg substrings: String): <Error class: unknown class>

Extension function for the String class that checks if the string contains any of the substrings from a given list.

Link copied to clipboard
fun String.either(first: String, second: String): String

Extension function for the String class that toggles the string value between the provided first and second strings.

Link copied to clipboard

Extension function for the String class that converts a hexadecimal string back to its original string representation.

Link copied to clipboard

Extension function to check if a string is a valid email address.

Link copied to clipboard

Extension function to check if a string is numeric.

Link copied to clipboard

Extension function to convert a string to title case.

Link copied to clipboard

Extension function to convert a string with spaces to camel case.

Link copied to clipboard
fun String.toHex(): <Error class: unknown class>

Extension function for the String class that converts the string to its hexadecimal representation.