Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Get Unique Numbers from Array

$
0
0

Summary: Learn how to get unique numbers from an array.

Hey, Scripting Guy! Question How can I use Windows PowerShell to return only the numbers that are unique in an array?

Hey, Scripting Guy! Answer Sort the array of numbers, then pipe the output to the Get-Unique cmdlet, for example:

$a = 1,2,7,6,4,3,3,2,9

$a | sort | Get-Unique

Note  Sort is an alias for the Sort-Object cmdlet.


Viewing all articles
Browse latest Browse all 3333

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>