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 登录后复制