Syntax LSet(S, Len)
Group String
Description Return a string from S with only the Len chars.
Parameter Description
S Return the left portion of this string value.
Len Return this many chars. If S is shorter than that then fill the remainder with spaces.
See Also RSet( ).
Example '#Language
"WWB.NET"
SubMain
Debug.Print
LSet("Hello",6) '"Hello "
EndSub