How to get distinct characters?

前端 未结 9 1966
南旧
南旧 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:10

    Here's an approach with grouping by characters...

    var code="AABBDDCCRRFF";
    var unique = string.Concat(text.GroupBy(a => a).Select(a => a.Key));
    

提交回复
热议问题