Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Irregular
0.1.2
Types/Irregular.Regular.Expression.type.ps1
Write-TypeView
-TypeName
Irregular.Regular.Expression
-ScriptProperty
@{
Pattern
=
{
$this
.
ToString
(
)
}
IsValid
=
{
if
(
$this
-is
[Regex]
)
{
$true
}
else
{
$false
}
}
}