在 C# 中為字串新增製表符

Muhammad Maisam Abbas 2024年2月16日
在 C# 中為字串新增製表符

在本教程中,我們將介紹如何在 C# 中向字串新增製表符。

在 C# 中使用\t 轉義字元在字串內新增製表符

\t 轉義字元在 C# 控制檯中顯示一個製表符空間。\t 轉義字元還可以用於在 C# 中的字串變數內新增製表符空間。我們必須將\t 寫在我們想要在字串中新增製表符的地方。以下程式碼示例向我們展示瞭如何在 C# 中使用\t 轉義字元在字串變數中新增製表符。

using System;

namespace add_tab_in_string {
  class Program {
    static void Main(string[] args) {
      string sentence = "Age\t:\t22";
      Console.WriteLine(sentence);
    }
  }
}

輸出:

Age     :       22

我們通過在 C# 中初始化字串時寫入\t,在字串變數 sentence 中新增了一個製表符。此方法只能在字串初始化期間使用。如果要在初始化後向字串變數新增製表符空間,則必須在 C# 中使用 String.Replace() 函式。String.Replace(string x, string y) 函式返回一個字串字串 x 已替換為字串 y 的值。下面的程式碼示例向我們展示瞭如何使用 C# 中的 String.Replace() 函式在初始化後向字串新增製表符。

using System;

namespace add_tab_in_string {
  class Program {
    static void Main(string[] args) {
      string sentence = "Age : 22";
      sentence = sentence.Replace(" ", "\t");
      Console.WriteLine(sentence);
    }
  }
}

輸出:

Age     :       22
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