8 lines
127 B
Text
8 lines
127 B
Text
function isNumeric ($x) {
|
|
try {
|
|
0 + $x | Out-Null
|
|
return $true
|
|
} catch {
|
|
return $false
|
|
}
|
|
}
|