摘要: ``` /// /// 1. 校验正整数(包含0) /// public static bool isInterger(string str) { return string.IsNullOrWhiteSpace(str) ? false:Regex.IsMatch(str, @"^[1-9]\d*|0$"); } /// /// 2. 校验非零正整数 /// public s... 阅读全文
posted @ 2019-05-19 16:09 Mouer404 阅读(2216) 评论(0) 推荐(0) 编辑
摘要: NewtonSoft.Json NULL转空字符串 http://www.cnblogs.com/hetuan/articles/4565702.html 阅读全文
posted @ 2019-05-19 11:22 Mouer404 阅读(721) 评论(0) 推荐(0) 编辑