Languages
[Edit]
EN

C# / .NET - remove first 3 characters from string

0 points
Created by:
Kelly
394

In this article, we would like to show you how to remove the first 3 characters from the string in C# / .NET.

Quick solution:

string text = "ABCDE";

string result = text.Substring(3);
Console.WriteLine(result);  // DE

 

Practical examples

1. Using String Substring() method

In this example, we use String Substring() method to create a new result substring from the text string without the first 3 characters.

Syntax:

Substring(int startIndex, int length);

Note:

If length is not given, substring will be done from startIndex to the end of the text.

Practical example:

using System;

public class StringUtils
{
    public static void Main(string[] args)
    {
        string text = "ABCDE";

        string result = text.Substring(3);
        Console.WriteLine(result);  // DE
    }
}

Output:

DE

2. Using StringBuilder Remove() method

In this example, we create sb StringBuilder object from the text string, then we use Remove() method on the sb to delete the first 3 characters. 

Syntax:

Remove(int startIndex, int length)

Practical example:

using System;
using System.Text;

public class StringUtils
{
    public static void Main(string[] args)
    {
        string text = "ABCDE";

        // Create StringBuilder object
        StringBuilder sb = new(text);

        // Remove first 3 characters
        sb.Remove(0, 3);

        Console.WriteLine(sb);
    }
}

Output:

DE
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Cross technology - remove first 3 characters from string

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join