Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. $name = Read-Host "Username?"
  2.  
  3. Switch ($name.length)
  4. {
  5. {$_ -le 3} {"Name is too short min required is 3 chars yours is $_"}
  6. {$_ -gt 50} {"Name is too long max allowed is 50 chars yours is $_"}
  7. {$_ -gt 3 -and $_ -le 50} {"Name is good with $_ chars long"}
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement