left(
TEXT
,
LENGTH
)

The left( function extracts characters from the left edge of the text.


Parameters

This function has two parameters:

text – original text

length – number of characters to extract from beginning of the original text. Any characters beyond the length will be discarded.


Description

This function extracts one or more characters from the left edge of the text.

left("abcdef",1) ☞ a
left("abcdef",3) ☞ abc
left("abcdef",12) ☞ abcdef

Note: This function is equivalent to:

text[1;length]

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.