Visual Basic LTrim 函数

定义和用法

LTrim 函数可删除字符串左侧的空格。

语法
  1. Len(string|varname)
参数描述
string字符串表达式。

实例

例子 1
  1. Module Module1
  2. Sub Main()
  3. dim txt
  4. txt=" This is a beautiful day! "
  5. Console.WriteLine(LTrim(txt))
  6. End Sub
  7. End Module

输出:

  1. "This is a beautiful day! "

分类导航