Contents
Display Legacy Contents

 Print
    Left      
This Function returns a <string>, composed by the Length chars at left of the Source string.

Parameters

Source string <string>
  String from where the value will be retrieved.
   
Length <numeric>
  Length of the left part of Source string to extract.

     
Example 1
  Example 2
Left("Kalipso is great.", 7)

Result = Kalipso
  Left("Kalipso is great.", 20)

Result = Kalipso is great.

     
  • If you specify a Length higher than the length of Source String, the returned value will be the entire Source String.

See also
Samples

 
Updated: 11/5/2014 11:50 AM