Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
PowerJira
1.0.5
private/Test-Id.ps1
function
Test-Id
{
param
(
# The value to be tested
[
Parameter
(
Mandatory
)
]
[string]
$Value
)
process
{
$Value
-match
"^[\d]+$"
}
}