我可以用一個do while
環和正則表達式驗證字符串輸入,因此該字符串被拒絕時,一個數字是內部與[:alpha:]
字符串驗證 - 用do while循環
Console.Write("Please Input The student First name/To cancel enter END> ");
StFName[count] = Console.ReadLine();
do
{
Console.Write("Please Input The student First name/To cancel enter END> ");
StFName[count] = Console.ReadLine();
} while (StFName =! "[:alpha:]");
這是我的夢想場景
你的問題不太清楚。 –
@LibertyLocked:它類似於POSIX中的'[a-zA-Z]'。 [Here](http://www.regular-expressions.info/posixbrackets.html) –