Visual Basic Len 函数

定义和用法

Len 函数可返回字符串中字符的数目。

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

实例

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

输出:

  1. 24
例子 2
  1. Module Module1
  2. Sub Main()
  3. Console.WriteLine(Len("This is a beautiful day!"))
  4. End Sub
  5. End Module

输出:

  1. 24

分类导航