How can I remove duplicates from a PowerShell array.

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

feedback

2 Answers

up vote 26 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
link|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. – Joey Sep 8 '09 at 5:30
Johannes, Get-Unique is available in v1 :) – Shay Levy Sep 8 '09 at 6:58
feedback

Another option:

$a | sort -unique

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

Your Answer

 
or
required, but never shown

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