VBA LTRIM 函数在删除字符串左侧的空格后返回一个字符串。
LTrim(文本)
仅在该行的左侧剪切空格:
Sub LTrimExample() MsgBox LTrim(" test") '返回:“test” MsgBox LTrim("test ") '返回:“test ” MsgBox LTrim(" test ") '返回:“test ” MsgBox LTrim(" test test ") '返回:“test test ” End Sub