Home »
VB.Net »
VB.Net Programs
VB.Net program to demonstrate the LTrim() function
By Nidhi Last Updated : November 11, 2024
LTrim() function in VB.Net
The LTrim() function is used to remove the blank space from the left side.
Syntax
LTrim(str)
Parameter(s)
- Str: a specified string that may contain blank space on the left or right side.
Return Value
The LTrim() function will return a string after removing blank space from the left side.
VB.Net code to demonstrate the example of LTrim() function
The source code to demonstrate the LTrim() function is given below. The given program is compiled and executed successfully.
'VB.Net program to demonstrate the LTrim() function.
Module Module1
Sub Main()
Dim str1 As String = " I love india "
Dim str2 As String = ""
str2 = LTrim(str1)
Console.WriteLine("Left Trimmed string: #{0}#", str2)
End Sub
End Module
Output:
Left Trimmed 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 str1 and str2, here variable str1 is initialized with " I love india " and variable str2 is initialized with a blank string.
str2 = LTrim(str1)
In the above code, we used the LTrim() function that will return the string after removing space from the left side. Then we printed the string on the console screen.
VB.Net Basic Programs »