Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

문자열이 panagram인지 확인하는 C# 프로그램


팬그램에는 26개의 알파벳이 모두 들어 있습니다.

아래에 문자열을 입력했는데 팬그램인지 아닌지 확인합니다 -

string str = "The quick brown fox jumps over the lazy dog";

이제 Pangram에는 알파벳 26자가 모두 있으므로 ToLower(), isLetter() 및 Count() 함수를 사용하여 문자열에 not 26자 모두가 있는지 확인합니다.

예시

다음 코드를 실행하여 문자열이 팬그램인지 여부를 확인할 수 있습니다.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
namespace Demo {
   public class Program {
      public static void Main(string []arg) {
         string str = "The quick brown fox jumps over the lazy dog";
         Console.WriteLine("{0}: \"{1}\" is pangram", checkPangram(str), str);
         Console.ReadKey();
      }
      static bool checkPangram(string str) {
         return str.ToLower().Where(ch => Char.IsLetter(ch)).GroupBy(ch => ch).Count() == 26;
      }
   }
}

출력

True: "The quick brown fox jumps over the lazy dog" is pangram