PowerTip: Find if Variable Is Array

Doctor Scripto

Summary: Use Windows PowerShell to find if a variable is an array.

Hey, Scripting Guy! Question How can I use Windows PowerShell to find if a variable contains an array?

Hey, Scripting Guy! Answer Use the –is operator, and test to see if it is a type of [array], for example:

$a = 1,2,4,5,6,7

$a -is [array]

0 comments

Discussion is closed.

Feedback usabilla icon