Returns the specified number of characters from the start of a text value.
Function
result = left(text, count)
Arguments
Argument | Data Type |
text | string |
---|---|
count | integer |
result | string |
Examples
result = left('Falcon Heavy', 6) /* result = 'Falcon' */
Returns the specified number of characters from the start of a text value.
result = left(text, count)
Argument | Data Type |
text | string |
---|---|
count | integer |
result | string |
result = left('Falcon Heavy', 6) /* result = 'Falcon' */