摘要: /* 正则验证 */ /// /// 返回与模式字符串匹配的值 /// /// 输入字符串 /// 模式字符串 /// public static string Match(this string input, string pattern) { return input.IsNullOrEmpty() ? null : Regex.Match(input, pattern).Value;... 阅读全文
posted @ 2017-12-15 16:04 会弹猫的吉他 阅读(158) 评论(0) 推荐(0) 编辑