C# - Trim (Remove) Trailing Spaces from a String

Learn, how to trim trailing spaces from a string using C# program?
[Last updated : March 20, 2023]

To trim (remove) trailing spaces from a string, we use String.TrimEnd() method.

String.TrimEnd()

The String.TrimEnd() method returns string after removing the trailing spaces.

Syntax

String String.TrimEnd();

Example

Input string is: "   This is a sample string  "
Output string is: "   This is a sample string"

C# program to remove trailing spaces from a string

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1 {
  class Program {
    static void Main() {
      String str1 = "  This is a sample string  ";;
      String str2;

      str2 = str1.TrimEnd();

      Console.WriteLine("Trimmed string is:(" + str2 + ")");

    }
  }

}

Output

Trimmed string is:(  This is a sample string)

Explanation

Note: Input string contains spaces at starting and ending but String.TrimEnd() removes ending (trailing) spaces only.

C# Basic Programs »

Comments and Discussions!

Load comments ↻





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