Object representing a Kite string.
operator +(rhs)
: Concatenate two strings together.operator *(num)
: Duplicate string a given number of times.operator ==(rhs)
: Returns true if the current string is equal to the given string.operator !=(rhs)
: Returns true if the current string is not equal to the given string.operator <(rhs)
: Returns true if the current string is less than the given string.operator >(rhs)
: Returns true if the current string is greater than the given string.operator <=(rhs)
: Returns true if the current string is less than or equal to the given string.operator >=(rhs)
: Returns true if the current string is greater than or equal to the given string.operator [](index)
: Returns the character at the given index.__op_array__(index)
: Returns the character at the given index.__op_equals__(rhs)
: Returns true if the current string is equal to the given string.__op_geq__(rhs)
: Returns true if the current string is greater than or equal to the given string.__op_gt__(rhs)
: Returns true if the current string is greater than the given string.__op_leq__(rhs)
: Returns true if the current string is less than or equal to the given string.__op_lt__(rhs)
: Returns true if the current string is less than the given string.__op_multiply__(num)
: Duplicate string a given number of times.__op_nequals__(rhs)
: Returns true if the current string is not equal to the given string.__op_plus__(rhs)
: Concatenate two strings together.append(rhs)
: Concatenate two strings together.asc()
: Return ASCII code for current character.bool()
: Return Boolean representation of given string.charAt(index)
: Returns the character at the given index.chr(code)
: Return ASCII character for given code.float()
: Return floating-point representation of given string.format(vals)
: Replace format codes within string with the given values (as in printf).int()
: Return integer representation of given string.length()
: Return length of given string.lower()
: Return lower-case representation of given string.ltrim()
: Trim whitespace from beginning of string.repeat(num)
: Duplicate string a given number of times.replace(match, replace)
: Replaces every instance of the first parameter with the second parameter.rtrim()
: Trim whitespace from the end of string.split(delim)
: Split a string on a delimiter.split(delim, max)
: Split a string on a delimiter.str()
: Return string representation of given string.substring(start)
: Return part of the given string.substring(start, length)
: Return part of the given string.trim()
: Trim whitespace from both sides of string.upper()
: Return upper-case representation of given string.