共用方式為


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。 如果指定的字串比指定的長度短,則空格會新增至字元串的左端,以產生適當的長度。 如果指定的字串長度超過指定的長度,則會縮短為指定的長度。

適用於

另請參閱