Visual Basic Left 函数

定义和用法

Left 函数可从字符串的左侧返回指定数目的字符。

提示请使用 Len 函数 来确定字符串中的字符数目。

提示请参阅 Right 函数

语法
  1. Left(string,length)
参数描述
string必需的。从其中返回字符的字符串。
length必需的。规定需返回多少字符。如果设置为 0,则返回空字符串("")。如果设置为大于或等于字符串的长度,则返回整个字符串。

实例

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

输出:

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

输出:

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

输出:

  1. This is a beautiful day!

分类导航