Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1427256
  • 博文数量: 430
  • 博客积分: 9995
  • 博客等级: 中将
  • 技术积分: 4388
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-24 18:04
文章存档

2013年(1)

2008年(2)

2007年(14)

2006年(413)

分类:

2006-05-31 08:59:34

using System;
using System.Text.RegularExpressions;
namespace bobomousecom.crm
{
 /// 
 /// Regexlib 的摘要说明。
 /// 

 public class Regexlib
 {
  public Regexlib()
  {
   //
   // TODO: 在此处添加构造函数逻辑
   //
  }

  //搜索输入字符串并返回所有 href=“...”值
  string DumpHrefs(String inputString) 
  {
   Regex r;
   Match m;
   r = new Regex("href\\s*=\\s*(?:\"(?<1>[^\"]*)\"|(?<1>\\S+))",
    RegexOptions.IgnoreCase|RegexOptions.Compiled);
   for (m = r.Match(inputString); m.Success; m = m.NextMatch()) 
   {
    return("Found href " + m.Groups[1]);
   }
  }

  //验证Email地址
  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 的日期形式。
  string MDYToDMY(String input) 
  {
   return Regex.Replace(input,"\\b(?\\d{1,2})/(?\\d{1,2})/(?\\d{2,4})\\b","${day}-${month}-${year}");
  }

  //验证是否为小数
  bool IsValidDecimal(string strIn)
  {
   
   return Regex.IsMatch(strIn,@"[0].\d{1,2}|[1]"); 
  }

  //验证是否为电话号码
  bool IsValidTel(string strIn)
  {
   return Regex.IsMatch(strIn,@"(\d+-)?(\d{4}-?\d{7}|\d{3}-?\d{8}|^\d{7,8})(-\d+)?"); 
  }

  //验证年月日
  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)$"); 
  }

  //验证后缀名
  bool IsValidPostfix(string strIn)
  {
   return Regex.IsMatch(strIn,@"\.(?i:gif|jpg)$"); 
  }

  //验证字符是否在4至12之间
  bool IsValidByte(string strIn)
  {
   return Regex.IsMatch(strIn,@"^[a-z]{4,12}$"); 
  }

  //验证IP
  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])$"); 
  } 
 }
}
 
阅读(1409) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~