>  기사  >  백엔드 개발  >  C#에서 일반적으로 사용되는 정규식의 여러 예를 공유하세요.

C#에서 일반적으로 사용되는 정규식의 여러 예를 공유하세요.

Y2J
Y2J원래의
2017-04-26 13:43:161517검색

using System;  
using System.Text.RegularExpressions;  
namespace CommonTools  
{  
/**//// <summary>  
/// RegexLib 的摘要说明。  
/// </summary>  
public class RegexLib  
{  
//验证Email地址  
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#에서 일반적으로 사용되는 정규식의 여러 예를 공유하세요.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.