当前位置:
首页 > Python基础教程 >
-
C#教程之C# 常用验证
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web; using System.Web.UI.HtmlControls; using System.Web.UI; using System.Text.RegularExpressions; namespace Common { public class Validate { private static readonly Regex RegPhone = new Regex("(^(\\d{11})$|^((\\d{7,8})|(\\d{4}|\\d{3})-(\\d{7,8})|(\\d{4}|\\d{3})-(\\d{7,8})-(\\d{4}|\\d{3}|\\d{2}|\\d{1})|(\\d{7,8})-(\\d{4}|\\d{3}|\\d{2}|\\d{1}))$)"); //电话号码和手机验证 private static Regex RegEmail = new Regex("^\\s*([A-Za-z0-9_-]+(\\.\\w+)*@([\\w-]+\\.)+\\w{2,3})\\s*$"); //new Regex("^[\\w-]+@[\\w-]+\\.(com|net|org|edu|mil|tv|biz|info)$");//w 英文字母或数字的字符串,和 [a-zA-Z0-9] 语法一样 private static Regex RegNum = new Regex("^[0-9]+$"); //必须是数字正则表达式(小数或整数) private static Regex regex = new Regex(@"/^[0-9]+\.?[0-9]{0,3}$/"); /// <summary> /// 身份证正值表达式 /// </summary> private static readonly Regex RegCardId = new Regex("(^\\d{15}$)|(^\\d{17}([0-9]|X|x)$)"); #region 确定用户输入是否合法 /// <summary> /// 确定用户输入是否合法 /// </summary> /// <param name="text">用户输入字符串</param> /// <param name="maxLength">最大字符串长度</param> /// <returns></returns> public static string InputText(string text, int maxLength) { if (string.IsNullOrEmpty(text)) return string.Empty; text = text.Trim(); if (maxLength != 0) if (text.Length > maxLength) text = text.Substring(0, maxLength); text = Regex.Replace(text, "[\\s]{2,}", " "); text = Regex.Replace(text, "(<[b|B][r|R]/*>)+|(<[p|P](.|\\n)*?>)", "\n"); text = Regex.Replace(text, "(\\s*&[n|N][b|B][s|S][p|P];\\s*)+", " "); //text = Regex.Replace(text, "<(.|\\n)*?>", string.Empty); //屏蔽标签 text = text.Replace("'", "''"); return text; } #endregion #region 验证电话号码 // 电话号码和手机号码检查 /// <summary> /// 电话号码和手机号码检查 /// </summary> /// <param name="inputData">电话号码或手机号码</param> /// <returns>匹配结果</returns> public static bool IsPhone(string inputData) { Match m = RegPhone.Match(inputData); return m.Success; } #endregion #region 验证参数是否为中文字符 /// <summary> /// 验证参数是否为中文字符 /// </summary> /// <param name="input">输入参数</param> /// <returns></returns> public static bool IsChinese(string input) { Regex regex = new Regex(@"[\u4e00-\u9fa5]", RegexOptions.IgnoreCase); return regex.IsMatch(input); } #endregion #region 邮件地址 /// <summary> /// 邮件地址验证 /// </summary> /// <param name="inputData">输入字符串</param> /// <returns>验证结果</returns> public static bool IsEmail(string inputData) { Match m = RegEmail.Match(inputData); return m.Success; } #endregion #region 是否为数字 /// <summary> /// 是否为数字 /// </summary> /// <param name="inputData">输入字符串</param> /// <returns>是否为数字</returns> public static bool IsNum(string inputData) { if(string.IsNullOrEmpty(inputData)) { return false; } Match m = RegNum.Match(inputData); return m.Success; } /// <summary> /// 判断是否是整数或小数 /// </summary> /// <param name="str">输入的字符串</param> /// <returns>是否为数字</returns> public static bool IsNumAll(string str) { if (string.IsNullOrEmpty(str)) { return false; } Match m = regex.Match(str); return m.Success; } #endregion #region 是否为身份证 /// <summary> /// 是否为身份证 /// </summary> /// <param name="inputData">输入字符串</param> /// <returns>是否为身份证</returns> public static bool IsCardId(string inputData) { Match m = RegCardId.Match(inputData); return m.Success; } #endregion /// <summary> /// 判断字符串是否是纯数字 /// </summary> /// <param name="message">源字符串</param> /// <returns></returns> public static bool IsNumberic(string message)//, out int result { System.Text.RegularExpressions.Regex rex = new System.Text.RegularExpressions.Regex(@"^\d+$"); var result = -1; if (rex.IsMatch(message)) { result = int.Parse(message); return true; } else return false; } } }
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式