避免重复

发布于 2024-08-22 02:49:55 字数 63 浏览 1 评论 0原文

如何避免字符串中的重复项(在 C# 中) 例如,我有 a,a,b,b,ci 想要得到像 a,b,c 这样的答案

how can i avoid duplicates from a string (in c#)
eg.i have a,a,b,b,c i want to get the answer like a,b,c

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

柳絮泡泡 2024-08-29 02:49:55

通过使用 HashSet

By using HashSet<string>.

友谊不毕业 2024-08-29 02:49:55

您可以使用 列表包含检查此问题的方法。

将其声明为

List<string> list = new List<string>();

并检查为

if (!list.Contains(stringValue))
   list.Add(stringValue);

You could use a List<> and the Contains method to check for this.

Declare it as

List<string> list = new List<string>();

and check as

if (!list.Contains(stringValue))
   list.Add(stringValue);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文