RSet Function

Syntax:

RSet(S, Len)

Group:

String

Description: Returns a string from S with only the Len chars.

Parameters:

Parameter

Description

S

Return the this string value right justified.

Len

Return this many chars. If S is shorter than that then fill the remainder with spaces.

Example:

Sub Main
  
  Debug.Print RSet("Hello",6) '"Hello "
  
End
Sub

See Also:

LSet