Functions - String Functions


String functions provide string processing capabilities.

Function Description
Len Returns an Integer containing the number of characters in a string.
UCase Returns a String that is the specified string, converted to upper-case characters.
LCase Returns a String that is the specified string, converted to upper-case characters.
Instr Returns an Integer giving the position of the first occurrence of one string within another.
Left Returns a String containing a specified number of characters from a string, starting at the beginning and working forwards.
Mid Returns a String containing a specified number of characters from a string.
Right Returns a String containing a specified number of characters from a string, starting at the end and working backwards.