6 lines
110 B
PowerShell
6 lines
110 B
PowerShell
|
|
function isNumeric ($x) {
|
||
|
|
$x2 = 0
|
||
|
|
$isNum = [System.Int32]::TryParse($x, [ref]$x2)
|
||
|
|
return $isNum
|
||
|
|
}
|