1. 程式人生 > >使用正則表示式驗證字母

使用正則表示式驗證字母

實現效果:

  

知識運用:

  

 

實現程式碼:

        static void Main(string[] args)
        {
            Console.Title = "使用正則表示式驗證字母";
            Console.WriteLine("開始輸入,回車驗證:\n");
            if(System.Text.RegularExpressions.Regex.IsMatch(Console.ReadLine(),"[a-zA-Z]"))
                Console.WriteLine("====【通過】====");
            else
                Console.WriteLine("====【失敗!】====");
        }