×

C# Tutorial

Basics of .Net

C# Basics

C# Fundamentals

C# Operators

C# Loops

C# Type Conversions

C# Exception Handling

C# String Class

C# Arrays

C# List

C# Stack

C# Queue

C# Collections

C# Character Class

C# Class and Object

C# Namespaces

C# Delegates

C# Constructors

C# Inheritance

C# Operator Overloading

C# Structures

C# File Handling

C# Convert.ToInt32()

C# Int32 (int) Struct

C# DateTime Class

C# Uri Class

C# Database Connectivity

C# Windows

C# Other Topics

C# Q & A

C# Programs

C# Find O/P

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 »

Advertisement
Advertisement

Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

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