📄️ clone
Clone this string i times.
📄️ code_at
Returns the character code as an uint.
📄️ contains
Check whether the string contains the specified substring.
📄️ find
Get the index of the first occurrence of the substring.
📄️ find_last
Get the index of the last occurrence of the substring.
📄️ replace
Replace each instance of the substring with the specified string.
📄️ split
Tokenizes the string into an array of substrings by using the specified pattern.
📄️ substring
Returns the part of the string from the start index up to and excluding the end index.
📄️ tolower
Converts the string to lowercase.
📄️ toupper
Converts the string to uppercase.