Examples/Safe_ReDoS_1.ps1

function Test-ReDoSSafe {
    param($line)

    return [regex]::IsMatch($line, '^(\\d{2}-\\d{2}-\\d{4})$')
}