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