如何强制输入仅为字符串?

时间:2014-03-05 22:06:15

标签: powershell powershell-ise

我需要用户输入一本书的标题。

我需要确保他们只输入字符串。

这是我到目前为止的任何指导。

执行{$ strTitle = Read-host“输入书名”} while($ strTitle -eq“”)

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

检查字母字符的代码:

Do {
    $strTitle = Read-host "Enter the book title"
} until ($strTitle -notMatch "[^[:alpha:]]")