Left-func
This function returns the leftmost n characters from the string.
string Left(string str, int n)
str
n
Returns leftmost n string.
string str1$ = "abcde"; string strLeft$ = Left(str1$,3)$; strLeft$ = ; //should return abc
Right