首頁  >  文章  >  後端開發  >  C# 中的子字串

C# 中的子字串

WBOY
WBOY轉載
2023-09-16 23:01:06917瀏覽

C# 中的子字符串

Substring 用於在 C# 中取得字串的子部分。為此,我們有 substring() 方法。使用 C# 中的 substring() 方法檢查每個子字串是否有唯一字元。循環它直到字串的長度。

如果子字串中的任何一個與另一個子字串匹配,則表示該字串沒有唯一字元。

您可以嘗試執行以下命令確定字串是否包含所有唯一字元的程式碼。此範例顯示了 Substring() 方法的用法 -

範例

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

public class Demo {

   public bool CheckUnique(string str) {
      string one = "";
      string two = "";

      for (int i = 0; i < str.Length; i++) {
         one = str.Substring(i, 1);
         for (int j = 0; j < str.Length; j++) {
            two = str.Substring(j, 1);
            if ((one == two) && (i != j))
            return false;
         }
      }
      return true;
   }

   static void Main(string[] args) {
      Demo d = new Demo();
      bool b = d.CheckUnique("amit");
      Console.WriteLine(b);

      Console.ReadKey();
   }
}

以上是C# 中的子字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除