Strings.LTrim(String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回包含指定字串複本的字串,但其中不包含前置空格 (LTrim
)、不包含後置空格 (RTrim
),或是不包含前置或後置空格 (Trim
)。
public:
static System::String ^ LTrim(System::String ^ str);
public static string LTrim (string? str);
public static string LTrim (string str);
static member LTrim : string -> string
Public Function LTrim (str As String) As String
參數
- str
- String
必要。 任何有效的 String
運算式。
傳回
包含指定字串複本的字串,但其中不包含前置空格 (LTrim
)、不包含後置空格 (RTrim
),或是不包含前置或後置空格 (Trim
)。
範例
此範例使用 LTrim
函式刪除字串變數中的前置空格,並使用 RTrim
函式刪除字串變數中的尾端空格。 它會使用 Trim
函式刪除這兩種類型的空格。
' Initializes string.
Dim testString As String = " <-Trim-> "
Dim trimString As String
' Returns "<-Trim-> ".
trimString = LTrim(testString)
' Returns " <-Trim->".
trimString = RTrim(testString)
' Returns "<-Trim->".
trimString = LTrim(RTrim(testString))
' Using the Trim function alone achieves the same result.
' Returns "<-Trim->".
trimString = Trim(testString)
備註
LTrim
、 RTrim
和 Trim
函式會從字串結尾移除空格。