![]() ![]() |
|
LEFTThe LEFT function extracts a sub-string of a specified length from the beginning of a string.
COMMAND SYNTAXLEFT(expression, length)
SYNTAX ELEMENTSexpression evaluates to the string from which the sub string is extracted.
NOTESThe LEFT() function is equivalent to sub-string extraction starting from the first character position, i.e. expression[1,length] See also RIGHT().
EXAMPLE
This code displays: "The world" |