C#程序检查字符串是否为panagram

七巧板具有一个字母的所有26个字母。

在下面,我们输入了一个字符串,并将检查它是否是Pangram-

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

现在,检查使用ToLower()isLetter()并且Count()方法字符串已经全部没有因为全字母短句拥有所有的字母表中的26个字母的26个字母。

示例

您可以尝试运行以下代码来检查字符串是否为pangram。

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

以上是 C#程序检查字符串是否为panagram 的全部内容, 来源链接: utcz.com/z/326995.html

回到顶部