Q:

C# program to trim a specified string from the right side

belongs to collection: C# Basic Programs | String programs

0

C# program to trim a specified string from the right side

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

The source code to trim a specified string from the right 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 
//the right 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 TrimEnd()####" + str+"####");
        str = str.TrimEnd();
        Console.WriteLine("String After TrimEnd()####" + str+"####");
    }
}

Output:

Enter a string:     Include Help
String Before TrimEnd()####    Include Help    ####
String After TrimEnd()####    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 TrimEnd() and method and then trimmed the string from the right side using the TrimEnd() method and printed the trimmed string on the console screen.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# Basic Programs | String programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to split a string using the Split() met... >>
<< C# program to trim a specified string from the lef...