在 C# 中獲取字串的第一個字元

Muhammad Maisam Abbas 2023年1月30日 2021年4月29日
  1. 在 C# 中使用 Linq 方法獲取字串的第一個字元
  2. 在 C# 中使用 String[] 方法獲取字串的第一個字元
  3. 在 C# 中使用使用者定義的方法獲取字串的第一個字元
在 C# 中獲取字串的第一個字元

本教程將討論在 C# 中獲取字串變數的第一個字元的方法。

在 C# 中使用 Linq 方法獲取字串的第一個字元

Linq 用於在 C# 中整合對資料結構的 SQL 查詢。FirstOrDefault() 函式獲取字串的第一個字元。以下程式碼示例向我們展示瞭如何使用 C# 中的 Linq 方法獲取字串的第一個字元。

using System;
using System.Linq;

namespace get_first_char_of_string
{
    class Program
    {
        static void Main(string[] args)
        {
            string name = "DelftStack";
            char first = name.FirstOrDefault();
            Console.WriteLine(first);
        }
    }
}

輸出:

D

在上面的程式碼中,我們使用 C# 中的 FirstOrDefault() 函式從字串變數名稱中提取了第一個字元第一個

在 C# 中使用 String[] 方法獲取字串的第一個字元

String[x] 屬性獲取 C# 中字串的 x 索引上的字元。下面的程式碼示例向我們展示瞭如何使用 C# 中的 String[] 屬性獲取字串變數的第一個字元。

using System;
using System.Linq;

namespace get_first_char_of_string
{
    class Program
    {
        static void Main(string[] args)
        {
            string name = "DelftStack";
            char first = name[0];
            Console.WriteLine(first);
        }
    }
}

輸出:

D

在上面的程式碼中,我們從字串變數 name 中以 C# 中的 name[0] 提取了第一個字元 first

在 C# 中使用使用者定義的方法獲取字串的第一個字元

通過遵循 C# 中使用者定義的方法,我們還可以獲得字串的第一個字元。為此,我們必須首先使用 C# 中的 String.ToCharArray() 函式將字串轉換為字元陣列。之後,我們可以在字元陣列的 0 索引處獲得該字元。以下程式碼示例向我們展示瞭如何在 C# 中實現此邏輯。

using System;
using System.Linq;

namespace get_first_char_of_string
{
    class Program
    {
        static void Main(string[] args)
        {
            string name = "DelftStack";
            char[] charArray = name.ToCharArray();
            char first = charArray[0];
            Console.WriteLine(first);
        }
    }
}

輸出:

D

此程式碼與上面討論的其他兩個示例具有相同的作用。但是不建議使用這種方法,因為它需要花費更多的時間和資源來執行,而且已經有一個內建的方法來實現。

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn

相關文章 - Csharp String

相關文章 - Csharp Char