实现效果:

使用正则表达式验证月份_正则表达式

运用知识:

使用正则表达式验证月份_正则表达式_02

实现代码:

        //定义方法
        public bool IsValidate(string str_month) {
            return System.Text.RegularExpressions.
                Regex.IsMatch(str_month,@"(^0?[0-9]$|^1[0-2]$)");
        }