C# 如何去除一串字符串中重复的字符
想要去除字符串数组中重复的字符,注意,不是字符串中重复的字符,自己简单写了一个程序来实现。
例如》 字符串数组
1 1 2 2 2 2 2 3 3 3 4 4 4 4
这里的数字是转化成了字符串的形式
程序运行结果》
1 2 3 4
实现的小程序:
public static string[] eliminate_duplicate_strarr(string[] _strarr) { int num = _strarr.Length;
List
list.Add(_strarr[0]);
for (int i = 0;i < num;i++) { if(!list.Contains(_strarr[
共有 0 条评论