RSet Function

Returns a right-aligned string containing the specified string adjusted to the specified length.

Public Shared Function RSet( _
    ByVal Source As String, _
    ByVal Length As Integer _
) As String

Parameters

  • Source
    Required. String expression. String to be adjusted.

  • Length
    Required. Integer expression. Length of returned string.

Remarks

If Source is longer than Length, RSet returns only the leftmost characters, up to the length of Length. If Source is shorter than Length, RSet adds spaces to the left end of the string to produce the appropriate length.

Example

This example demonstrates the use of the RSet function.

Dim TestString As String = "Right" 
' Returns "      Right" 
Dim rString As String = RSet(TestString, 11)

Requirements

Namespace:Microsoft.VisualBasic

**Module:**Strings

Assembly: Visual Basic Runtime Library (in Microsoft.VisualBasic.dll)

See Also

Concepts

Efficient Use of Data Types

Reference

String Manipulation Summary

Data Type Summary (Visual Basic)

LSet Function