TOP

函数VBA:LTrim

描述

VBA LTRIM 函数在删除字符串左侧的空格后返回一个字符串。


语法 LTRIM

LTrim(文本)

示例 VBA LTrim

仅在该行的左侧剪切空格:

Sub LTrimExample()

      MsgBox LTrim("   test")           '返回:“test”
      MsgBox LTrim("test   ")           '返回:“test   ”
      MsgBox LTrim("   test   ")        '返回:“test   ”
      MsgBox LTrim("   test   test   ") '返回:“test   test   ”
    
End Sub
要仅删除字符串右侧的空格,请使用 RTRIM 函数。
要删除行首和行尾的多余空格,请使用函数 TRIM