| 
       SETLEFT Extract left substring  | 
    Top Previous Next | 
 
 
 This script command extracts the leftmost [ cnt ] characters from [ value ] and saves the result in [ variable ]. 
 If the /split option is specified, the unextracted portion of [ value ] is assigned back to [ value ] replacing the original value. 
 Consider the following example. 
 ;; assign a variable to a string SET string = "this is a string" ;; extract the leftmost 4 characters SETLEFT substring = string 4 
 ;; another example of syntax to extract the leftmost 4 characters SETNUM len = 4 SETLEFT substring = string len 
 The resulting substring variable contains the value "this". The original string variable is unchanged. 
 Consider the same example using the /split option. 
 ;; assign a variable to a string SET string = "this is a string" ;; extract the leftmost 4 characters SETLEFT substring = string 4 /split 
 The resulting substring variable contains the value "this" and the original string variable becomes " is a string". 
 
 Related command(s): SETRIGHT, SETMID, SETLEN, SETEXTRACT, SETSUBSTR, SET, SETREPLACE  |