清除 C# 中的 StringBuilder


若要清除 StringBuilder,請使用 Clear() 方法。

假設我們設定了以下 StringBuilder −

string[] myStr = { "One", "Two", "Three", "Four" };
StringBuilder str = new StringBuilder("We will print now...").AppendLine();

現在,使用 Clear() 方法清除 StringBuilder −

str.Clear();

我們來看看完整的程式碼 −

示例

 即時演示

using System;
using System.Text;

public class Demo {
   public static void Main() {
      // string array
      string[] myStr = { "One", "Two", "Three", "Four" };
      StringBuilder str = new StringBuilder("We will print now...").AppendLine();

      // foreach loop to append elements
      foreach (string item in myStr) {
         str.Append(item).AppendLine();
      }
      Console.WriteLine(str.ToString());
      int len = str.Length;
      Console.WriteLine("Length: "+len);

      // clearing
      str.Clear();
      int len2 = str.Length;
      Console.WriteLine("Length after using Clear: "+len2);
      Console.ReadLine();
   }
}

輸出

We will print now...
One
Two
Three
Four

Length: 40
Length after using Clear: 0

更新於: 2020 年 6 月 22 日

2K+ 瀏覽量

開啟你的 職業生涯

完成課程獲得認證

開始學習
廣告
© . All rights reserved.