Returns
a new string that is made of part of an old string. If the
length of the new string is beyond the length of the original
string then white spaces will be added to it.
Syntax:
SubString (String, StartIndex, Count)
Example:
Old =
"B4Script"
New =
SubString (old,1, 2)
Result:
New = "4S"