I need the user to input a title of a book.
I need to make sure they input string only.
This is where I'm at so far, any guidance please.
Do { $strTitle = Read-host "Enter the book title"} while ($strTitle -eq "")
I need the user to input a title of a book.
I need to make sure they input string only.
This is where I'm at so far, any guidance please.
Do { $strTitle = Read-host "Enter the book title"} while ($strTitle -eq "")
What do you mean by string? alpha characters only?
You could try a regular expressions.
Do {
$strTitle = Read-host "Enter the book title"
} until ($strTitle -notMatch "[^[:alpha:]]")