The source code to program to trim a specified string from the left side in C# is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.
//Program to trim a specified string from left side in C#
using System;
class TrimDemo
{
static void Main(string[] args)
{
string str = "";
Console.Write("Enter a string: ");
str = Console.ReadLine();
Console.WriteLine("String Before TrimStart()####" + str+"####");
str = str.TrimStart();
Console.WriteLine("String After TrimStart()####" + str+"####");
}
}
Output:
Enter a string: Include Help
String Before TrimStart()#### Include Help ####
String After TrimStart()####Include Help ####
Press any key to continue . . .
Explanation:
Here, we created a class TrimDemo that contains the Main() method. The Main() method is the entry point of the program. Here we declared a string variable str, and then read the value of the string. After that, we printed the string before calling TrimStart() and method and then trimmed the string from the left side using TrimStart() method and printed the trimmed string on the console screen.
Program:
The source code to program to trim a specified string from the left side in C# is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.
Output:
Explanation:
Here, we created a class TrimDemo that contains the Main() method. The Main() method is the entry point of the program. Here we declared a string variable str, and then read the value of the string. After that, we printed the string before calling TrimStart() and method and then trimmed the string from the left side using TrimStart() method and printed the trimmed string on the console screen.