Visual Basic LCase 函数

定义和用法

LCase 函数可把指定的字符串转换为小写。

提示请参阅 UCase 函数

语法
  1. LCase(string)
参数描述
string必需的。需要被转换为小写的字符串。

实例

例子 1
  1. Module Module1
  2. Sub Main()
  3. dim txt
  4. txt="THIS IS A BEAUTIFUL DAY!"
  5. Console.WriteLine(LCase(txt))
  6. End Sub
  7. End Module

输出:

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

输出:

  1. this is a beautiful day!

分类导航