Strings.RSet(String, Int32) 方法

定义

返回包含调整为指定长度的指定字符串的右对齐字符串。

public:
 static System::String ^ RSet(System::String ^ Source, int Length);
public static string RSet (string? Source, int Length);
public static string RSet (string Source, int Length);
static member RSet : string * int -> string
Public Function RSet (Source As String, Length As Integer) As String

参数

Source
String

必需。 String 表达式。 字符串变量的名称。

Length
Int32

必需。 Integer 表达式。 返回的字符串的长度。

返回

包含调整为指定长度的指定字符串的右对齐字符串。

示例

此示例演示如何使用 RSet 函数。

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

注解

如果 Source 长于 LengthRSet 则仅在返回的字符串中放置最左边的 Source字符(最大长度)。 如果指定的字符串短于指定的长度,则会在字符串的左端添加空格以生成适当的长度。 如果指定的字符串长于指定长度,则会将其缩短为指定的长度。

适用于

另请参阅