收集常用的正则表达式
public static bool IsValidEmail( string strIn)
{
// Return true if strIn is in valid e-mail format.
return Regex.IsMatch(strIn, @ "^([/w-/.]+)@((/[[0-9]{1,3}/.[0-9]{1,3}/.[0-9]{1,3}/.)|(([/w-]+/.)+))([a-zA-Z]
{2,4}|[0-9]{1,3})(/]?)$");
}
//dd-mm-yy 的日期形式代替 mm/dd/yy 的日期形式。
public static string MDYToDMY( String input)
{
return Regex.Replace(input, "//b(?//d{1,2})/(?//d{1,2})/(?//d{2,4})//b", "${day}-${month}-${year}");
}
//验证是否为小数
public static bool IsValidDecimal( string strIn)
{
return Regex.IsMatch(strIn, @ "[0]./d{1,2}|[1]");
}
//验证是否为电话号码
public static bool IsValidTel( string strIn)
{
return Regex.IsMatch(strIn, @ "(/d+-)?(/d{4}-?/d{7}|/d{3}-?/d{8}|^/d{7,8})(-/d+)?");
}
//验证年月日
public static bool IsValidDate( string strIn)
{
return Regex.IsMatch(strIn, @ "^2/d{3}-(?:0?[1-9]|1[0-2])-(?:0?[1-9]|[1-2]/d|3[0-1])(?:0?[1-9]|1/d|2[0-3]):
(?:0?[1-9]|[1-5]/d):(?:0?[1-9]|[1-5]/d)$");
}
//验证后缀名
public static bool IsValidPostfix( string strIn)
{
return Regex.IsMatch(strIn, @ "/.(?i:gif|jpg)$");
}
//验证字符是否在4至12之间
public static bool IsValidByte( string strIn)
{
return Regex.IsMatch(strIn, @ "^[a-z]{4,12}$");
}
//验证IP
public static bool IsValidIp( string strIn)
{
return Regex.IsMatch(strIn, @ "^(/d{1,2}|1/d/d|2[0-4]/d|25[0-5])/.(/d{1,2}|1/d/d|2[0-4]/d|25[0-5])/.(/d{1,2}|1
/d/d|2[0-4]/d|25[0-5])/.(/d{1,2}|1/d/d|2[0-4]/d|25[0-5])$");
}
C#中正则表达式 (一)
1.匹配HTML标记的正则表达式:<(.*)>.*|<(.*) //> 例如:
2. 正整数: ^[0-9]*[1-9][0-9]*$
3.负整数: ^-[0-9]*[1-9][0-9]*$
4.整数: -?/d+$
5.正浮点数: ^(([0-9]+/.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*/.[0-9]+)|([0-9]*[1-9][0-9]*))$
6.负浮点数: ^(-(([0-9]+/.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*/.[0-9]+)|([0-9]*[1-9][0-9]*)))$
7.浮点数:^(-?/d+)(/./d+)?$
8.26个英文字(不区分大小写): ^[A-Za-z]+$
9.26个大写英文字母: ^[A-Z]+$
10.26个小写英文字母:^[a-z]+$
11.数字和26个英文字母混合: ^[A-Za-z0-9]+$
12.数字和26个英文字母和下划线混合: ^/w+$
13.电子邮件地址: /w+([-+.]/w+)*@/w+([-.]/w+)*/./w+([-.]/w+)*h
14.网址URL: ^[a-zA-z]+://(/w+(-/w+)*)(/.(/w+(-/w+)*))*(/?/S*)?$
15.中国电话: ((d{3,4})|d{3,4}-)?d{7,8}(-d{3})* 例如:021-8888888 或者0515-88888888 或者 021-88888888-888
16.字母开头,允许5-16字节,允许字母数字下划线: ^[a-zA-Z][a-zA-Z0-9_]{6,20}$
17.QQ号: ^[1-9]*[1-9][0-9]*$
18.IP地址: ^(d{1,2}|1dd|2[0-4]d|25[0-5]).(d{1,2}|1dd|2[0-4]d|25[0-5]).(d{1,2}|1dd|2[0-4]d|25[0-5]).(d{1,2}|1dd|2[0-4]d|25[0
-5])$
19.首尾空格:(^/s*)|(/s*$)
20.空行:/n[/s| ]*/r
21.中国邮政编码:[1-9]/d{5}(?!/d)
22. 中国手机:(86)*0*13/d{9}
23.中国电话(包括手机):(/(/d{3,4}/)|/d{3,4}-|/s)?/d{7,14}
24.数字:(-?/d*)(/./d+)?
25.双字节字符:[^/x00-/xff]*
26.过滤不安全的字符:^(([A-Z]*|[a-z]*|/d*|[-_/~!@#/$%/^&./w+([-.]/w+)*$"。
验证InternetURL:"^http://([/w-]+/.)+[/w-]+(/[/w-./?%&=]*)?$"。
验证电话号码:"^(/(/d{3,4}-)|/d{3.4}-)?/d{7,8}$"正确格式为:"XXX-XXXXXXX"、"XXXX-XXXXXXXX"、"XXX-XXXXXXX"、"XXX-XXXXXXXX"、"XXXXXXX"和"XXXXXXXX"。
验证身份证号(15位或18位数字):"^/d{15}|/d{18}$"。
验证一年的12个月:"^(0?[1-9]|1[0-2])$"正确格式为:"01"~"09"和"1"~"12"。
验证一个月的31天:"^((0?[1-9])|((1|2)[0-9])|30|31)$"正确格式为;"01"~"09"和"1"~"31"。
利用正则表达式限制网页表单里的文本框输入内容:
用正则表达式限制只能输入中文:οnkeyup="value=value.replace(/[^/u4E00-/u9FA5]/g,’’)" onbeforepaste="clipboardData.setData(’text’,clipboardData.getData(’text’).replace(/[^/u4E00-/u9FA5]/g,’’))"
用正则表达式限制只能输入全角字符: οnkeyup="value=value.replace(/[^/uFF00-/uFFFF]/g,’’)" onbeforepaste="clipboardData.setData(’text’,clipboardData.getData(’text’).replace(/[^/uFF00-/uFFFF]/g,’’))"
用正则表达式限制只能输入数字:οnkeyup="value=value.replace(/[^/d]/g,’’) "onbeforepaste="clipboardData.setData(’text’,clipboardData.getData(’text’).replace(/[^/d]/g,’’))"
用正则表达式限制只能输入数字和英文:οnkeyup="value=value.replace(/[/W]/g,’’) "onbeforepaste="clipboardData.setData(’text’,clipboardData.getData(’text’).replace(/[^/d]/g,’’))"
得用正则表达式从URL地址中提取文件名的javascript程序,如下结果为page1
以下是引用片段:
s="http://www.9499.net/page1.htm"
s=s.replace(/(.*//){0,}([^/.]+).*/ig,"$2")
alert(s)
匹配双字节字符(包括汉字在内):[^/x00-/xff]
应用:计算字符串的长度(一个双字节字符长度计2,ASCII字符计1)
以下是引用片段:
String.prototype.len=function(){return this.replace([^/x00-/xff]/g,"aa").length;}
匹配空行的正则表达式:/n[/s| ]*/r
匹配HTML标记的正则表达式:/<(.*)>.*|<(.*) //>/
匹配首尾空格的正则表达式:(^/s*)|(/s*$)
以下是引用片段:
{
return this.replace(/(^/s*)|(/s*$)/g, "");
}
利用正则表达式分解和转换IP地址:
下面是利用正则表达式匹配IP地址,并将IP地址转换成对应数值的Javascript程序:
以下是引用片段:
{
re=/(/d+)/.(/d+)/.(/d+)/.(/d+)/g //匹配IP地址的正则表达式
if(re.test(ip))
{
return RegExp.$1*Math.pow(255,3))+RegExp.$2*Math.pow(255,2))+RegExp.$3*255+RegExp.$4*1
}
else
{
throw new Error( "Not a valid IP address!")
}
}
文章来源: brucelong.blog.csdn.net,作者:Bruce小鬼,版权归原作者所有,如需转载,请联系作者。
原文链接:brucelong.blog.csdn.net/article/details/69819989
- 点赞
- 收藏
- 关注作者
评论(0)