C#程序确定字符串是否具有所有唯一字符

使用substring()C#中的方法检查每个子字符串的唯一字符。循环播放直到字符串的长度。

如果子字符串中的任何一个与另一个匹配,则意味着该字符串没有唯一字符。

您可以尝试运行以下代码来确定字符串是否具有所有唯一字符。

示例

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();
   }
}

输出结果

True