當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


VB.NET LCase()用法及代碼示例


LCase() 函數用於將指定的字符串轉換為小寫。

用法:

LCase(Str)

參數:

  • Str:指定要轉換為小寫的字符串。

返回值:

LCase() 函數將返回小寫字符串。

程序/源代碼:

下麵給出了演示 LCase() 函數的源代碼。給定的程序已成功編譯並執行。

'VB.Net program to demonstrate the LCase() function.

Module Module1

    Sub Main()
        Dim str As String = "I Love India"
        Dim LCaseStr As String

        LCaseStr = LCase(str)

        Console.WriteLine("Lowercase string:{0}", LCaseStr)
    End Sub
    
End Module

輸出:

Lowercase string:i love india
Press any key to continue . . .

說明:

在上麵的程序中,我們創建了一個包含 Main() 方法的模塊 Module1。在Main()方法中,我們創建了兩個變量str和LCaseStr,這裏變量str初始化為“I Love India”,變量LCaseStr初始化為空字符串。

LCaseStr = LCase(str)

在上麵的代碼中,我們使用了將返回小寫字符串的 LCase() 函數。然後我們在控製台屏幕上打印字符串。





相關用法


注:本文由純淨天空篩選整理自 VB.Net program to demonstrate the LCase() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。