PowerTip: Reverse Array with PowerShell

Doctor Scripto

Summary: Use Windows PowerShell to reverse an array.

Hey, Scripting Guy! Question How can I use Windows PowerShell to sort an array that is going in the wrong direction?

Hey, Scripting Guy! Answer Call the Reverse static method from the [array] class, for example:

PS C:\> $a = 1,2,3,4,5

PS C:\> [array]::Reverse($a)

0 comments

Discussion is closed.

Feedback usabilla icon