Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I remove duplicates from a PowerShell array.

$a = @(1,2,3,4,5,5,6,7,8,9,0,0)
share|improve this question

2 Answers

up vote 41 down vote accepted

Use Select -uniq e.g.:

$a = @(1,2,3,4,5,5,6,7,8,9,0,0)
$a = $a | select -uniq
share|improve this answer
you deserve your MVP, thanks again – spoon16 Sep 8 '09 at 4:39
1  
That was too easy :-(. In PowerShell 2 you can also use Get-Unique (or gu) if your array is already sorted. – Јοеу Sep 8 '09 at 5:30
Johannes, Get-Unique is available in v1 :) – Shay Levy Sep 8 '09 at 6:58

Another option:

$a | sort -unique

share|improve this answer
This also solves my next problem which is how do I sort it. Thanks! – Registered User May 18 '12 at 16:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.