Languages
[Edit]
EN

C# / .NET - get first character from string

0 points
Created by:
Zeeshan-Peel
730

In this article, we would like to show you how to get the first character from a string in C# / .NET.

Quick solution: 

string text = "1234";
string firstCharacters = text.Substring(0, 1);

Console.WriteLine(firstCharacters);  // 1

 

Practical example

The below example shows how to use Substring() method to get the first character from the text string.

using System;

public class StringUtils
{
    public static string getFirstCharacters(string text, int charactersCount)
    {
        int offset = Math.Min(charactersCount, text.Length);
        return text.Substring(0, offset);
    }

    public static void Main(string[] args)
    {
        Console.WriteLine(getFirstCharacters("1234", 1));  // 1
        Console.WriteLine(getFirstCharacters( "123", 1));  // 1
        Console.WriteLine(getFirstCharacters(  "12", 1));  // 1
        Console.WriteLine(getFirstCharacters(   "1", 1));  // 1
        Console.WriteLine(getFirstCharacters(    "", 1));  //
    }
}

Output: 

1
1
1
1
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 - get first character of 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