How can I remove duplicates from a PowerShell array.
$a = @(1,2,3,4,5,5,6,7,8,9,0,0)
|
How can I remove duplicates from a PowerShell array.
|
|||
|
|
|
Use Select -uniq e.g.:
|
|||
|
Another option: $a | sort -unique |
|||
|