正则运算符在C#中怎么用
各位大虾,拜托了
这是我总结的,或许有帮助,最好还是MSDN看帮助。http://www.cnblogs.com/rohelm/archive/2011/11/19/2384091.html
这里有很详细的示例:http://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex.aspx
推荐阅读:正则表达式30分钟入门教程
protected bool IsRegEx_Lower(string input) { return Regex.IsMatch(input.Trim(), @"^[^a-z]*$"); }