编程学习网为您整理以下代码实例,主要实现:C#检查字符串是否为全字母短句,希望可以帮到各位朋友。
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;
}
}
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!