c# 去除字符串中重复字符
2021-02-19 17:17
标签:需要 重复数据 去除 src post 字符串 tool gif 重复数 https://www.cnblogs.com/LuoEast/p/7886297.html 1.在写程序中经常操作字符串,需要去重,以前我的用方式利用List集合和 contains去重复数据代码如下: 2.现在我推荐大家使用一下方式去重复数据 c# 去除字符串中重复字符 标签:需要 重复数据 去除 src post 字符串 tool gif 重复数 原文地址:https://www.cnblogs.com/LuoEast/p/8315477.html 1 string test="123,123,32,125,68,9565,432,6543,343,32,125,68";
2 string[] array = test.Split(‘,‘);
3 Liststring> list = new Liststring>();
4 foreach (string item in array )
5 {
6 if (!list.Contains(item ))
7 {
8 list.Add(item);
9 }
10 }
1. string test="123,123,32,125,68,9565,432,6543,343,32,125,68";
2.string test1= String.Join("、",test.Split(‘,‘).Disctinct());
上一篇:layer弹出信息框API
下一篇:API集合开发文档