VB.Net program to demonstrate the LCase() function

Here, we are going to demonstrate the LCase() function in VB.Net.
Submitted by Nidhi, on December 04, 2020 [Last updated : March 05, 2023]

LCase() function in VB.Net

The LCase() function is used to convert the specified string into lowercase.

Syntax

LCase(Str)

Parameter(s)

  • Str: Specified string to be converted into lowercase.

Return Value

The LCase() function will return the lowercase string.

VB.Net code to demonstrate the example of LCase() function

The source code to demonstrate the LCase() function is given below. The given program is compiled and executed successfully.

'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

Output:

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

Explanation:

In the above program, we created a module Module1 that contains a Main() method. In the Main() method, we created two variables str and LCaseStr, here variable str is initialized with " I Love India " and variable LCaseStr is initialized with a blank string.

LCaseStr = LCase(str)

In the above code, we used the LCase() function that will return the lowercase string. Then we printed the string on the console screen.

VB.Net Basic Programs »






Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.