How to get distinct characters?

前端 未结 9 1952
南旧
南旧 2020-12-10 10:21

I have a code like

string code = \"AABBDDCCRRFF\";

In this code, I want to retrieve only distinct characters

The Output should be l

9条回答
  •  暖寄归人
    2020-12-10 11:19

    How about in linq:

    var str = "AABBCCDDDDDDEEEEEFFF";
    var unique = str.ToCharArray().Distinct();
    Console.WriteLine("Answer: {0}.", string.Join(string.Empty, unique));
    

提交回复
热议问题