C# 中的子字符串
子字符串用于获取 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(); } }
广告