icinga-powershell-framework/lib/core/tools/Test-Numeric.psm1
2019-07-19 19:35:08 +02:00

3 lines
75 B
PowerShell

function Test-Numeric ($number) {
return $number -Match "^[\d\.]+$";
}