Strings.RSet(String, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回包含调整为指定长度的指定字符串的右对齐字符串。
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
长于 Length
, RSet
则仅在返回的字符串中放置最左边的 Source
字符(最大长度)。 如果指定的字符串短于指定的长度,则会在字符串的左端添加空格以生成适当的长度。 如果指定的字符串长于指定长度,则会将其缩短为指定的长度。