Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#의 주어진 문자열에서 모든 중복 제거

<시간/>

다음은 문자열입니다.

string str = "ppqqrr";

이제 Hashset을 사용하여 문자열을 char에 매핑합니다. 이렇게 하면 문자열에서 중복 문자가 제거됩니다.

var res = new HashSet<char>(str);

전체 예를 살펴보겠습니다 -

using System;
using System.Linq;
using System.Collections.Generic;
namespace Demo {
   class Program {
      static void Main(string[] args) {
         string str = "ppqqrr";
         Console.WriteLine("Initial String: "+str);
         var res = new HashSet<char>(str);
         Console.Write("New String after removing duplicates:");
         foreach (char c in res){
            Console.Write(c);
         }  
      }
   }
}

출력

Initial String: ppqqrr
New String after removing duplicates:pqr