Strings.LSet(String, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个左对齐字符串,该字符串包含调整为指定长度的指定的字符串。
public:
static System::String ^ LSet(System::String ^ Source, int Length);
public static string LSet (string? Source, int Length);
public static string LSet (string Source, int Length);
static member LSet : string * int -> string
Public Function LSet (Source As String, Length As Integer) As String
参数
- Source
- String
必需。 String
表达式。 字符串变量的名称。
- Length
- Int32
必需。 Integer
表达式。 返回的字符串的长度。
返回
一个左对齐字符串,该字符串包含调整为指定长度的指定的字符串。
示例
此示例演示如何使用 LSet
函数。
Dim testString As String = "Left"
Dim lString As String
' Returns "Left "
lString = LSet(testString, 10)
' Returns "Le"
lString = LSet(testString, 2)
' Returns "Left"
lString = LSet(testString, 4)
注解
如果指定的字符串长于指定长度,则返回的字符串将缩短为指定长度。 如果指定的字符串短于指定的长度,则会在返回的字符串的右端添加空格以生成适当的长度。