String

String functions provide a variety of operations for efficient text manipulation. These include concatenation (joining strings), length determination, case conversion, substring extraction, replacement, and searching.

string.format

Converts the value of objects to strings based on the formats specified and inserts them into another string.

Return Type: String


string.join

Concatenates the elements of a specified array, using the specified separator between each element.

Return Type: String


string.split

Returns a string array that contains the substrings in this instance that are delimited by elements of a specified string.

Return Type: String


string.substring

Retrieves a substring from a string value.

Return Type: String


string.trim

Returns a new string in which all leading and trailing occurrences of a set of specified characters from the current string are removed.

Return Type: String