码迷,mamicode.com
首页 > 其他好文 > 详细

C# 实现字符串去重

时间:2014-06-23 06:01:57      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   使用   

方法一 注:需要.net 3.5框架的支持

string s = "101,102,103,104,105,101,102,103,104,105,106,107,101,108";
s = string.Join(",", s.Split(,).Distinct().ToArray());

方法二

class Program
    {
        static void Main(string[] args)
        {
            string result="";
            string str = "101,102,103,104,105,101,102,103,104,105,106,107,101,108";
            ArrayList list = array(str);
            for (int i = 0; i < list.Count;i++)
            {
                if (i == list.Count - 1)
                {
                    result += list[i];
                }
                else
                {
                    result += list[i] + ",";
                }
            }
            Console.WriteLine(result);

            Console.ReadKey();
        }

        static ArrayList array(string str)
        {
            ArrayList aimArr = new ArrayList();
            ArrayList strArr = new ArrayList();
            string [] strs=str.Split(,);
            foreach (string s in strs)
            {
                strArr.Add(s);
            }
            for (int i = 0; i < strs.Length; i++)
            {
                if (!aimArr.Contains(strs[i]))
                {
                    aimArr.Add(strs[i]);
                }
            }
            return aimArr;
        }
    }

  //101,102,103,104,105,106,107,108

方法三:使用正则

  string input = "101,102,103,104,105,101,102,103,104,105,106,107,101,108";
            input = Regex.Replace(input + ",", @"(?:([^,]+,))(?=.*?\1)", "");
            Console.WriteLine(input.Substring(0,input.Length-1));

 

C# 实现字符串去重,布布扣,bubuko.com

C# 实现字符串去重

标签:style   class   blog   code   color   使用   

原文地址:http://www.cnblogs.com/yhyjy/p/3799857.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!