icinga-powershell-framework/lib/core/tools/Test-Numeric.psm1

4 lines
75 B
PowerShell
Raw Normal View History

2019-07-19 13:35:08 -04:00
function Test-Numeric ($number) {
return $number -Match "^[\d\.]+$";
}