我想創建一個程序,要求我對用戶輸入進行驗證,只接受給定數組中的字母5 。所以基本上,如果我是用戶,我不允許輸入數字或特殊字符,如果我這樣做,我會得到一個錯誤。有人可以幫我解決這個問題嗎?我嘗試了各種各樣的搜索,我一直無法找到解決方案。我感謝任何幫助,我可以得到。 這是我迄今爲止。如何用字母(az)請求用戶輸入沒有特殊字符或數字在C#
class Program
{
static void Main(string[] args)
{
char[] arr = new char[5];
//User input
Console.WriteLine("Please Enter 5 Letters only: ");
for (int i = 0; i < arr.Length; i++)
{
arr[i] = Convert.ToChar(Console.ReadLine());
}
//display
for(int i = 0; i<arr.Length; i++)
{
Console.WriteLine("You have entered the following inputs: ");
Console.WriteLine(arrArray[i]);
}
}
}
您可以閱讀答案這裏http://stackoverflow.com/questions/6017778/c -sharp-regex-checking-for-az-and-az – duyanhphamkiller
你已經在2天內提出了相同的問題4次;請查詢[StackOverflow幫助](http://stackoverflow.com/help)提問。 [2 days ago](http://stackoverflow.com/questions/36191717),[1天前](http://stackoverflow.com/questions/),[4小時前](http:// stackoverflow。 com/questions/36239820),[1小時前](http://stackoverflow.com/questions/36241502) –