C#(Regex)Regex類的一些常見使用方式

來源:互聯網
上載者:User
using System;
using System.Text.RegularExpressions;
namespace MetarCommonSupport
{
 ///

 /// 通過Framwork類庫中的Regex類實現了一些特殊功能資料檢查
 ///
 public class MetarnetRegex
 {
  
  private static MetarnetRegex instance = null;
  public static MetarnetRegex GetInstance()
  {
   if(MetarnetRegex.instance == null)
   {
    MetarnetRegex.instance = new MetarnetRegex();
   }
   return MetarnetRegex.instance;
  }
  private MetarnetRegex()
  {
  }
  ///

  /// 判斷輸入的字串只包含漢字
  ///
  ///  ///
  public static bool IsChineseCh(string input)
  {
   Regex regex = new Regex("^[\u4e00-\u9fa5]+$");
   return regex.IsMatch(input);
  }

  ///

  /// 匹配3位或4位區號的電話號碼,其中區號可以用小括弧括起來,
  /// 也可以不用,區號與本地號間可以用連字號或空格間隔,
  /// 也可以沒有間隔
  /// \(0\d{2}\)[- ]?\d{8}|0\d{2}[- ]?\d{8}|\(0\d{3}\)[- ]?\d{7}|0\d{3}[- ]?\d{7}
  ///
  ///  ///
  public static bool IsPhone(string input)
  {
   string pattern = "^\\(0\\d{2}\\)[- ]?\\d{8}$|^0\\d{2}[- ]?\\d{8}$|^\\(0\\d{3}\\)[- ]?\\d{7}$|^0\\d{3}[- ]?\\d{7}$";
   Regex regex = new Regex(pattern);
   return regex.IsMatch(input);
  }
  ///

  /// 判斷輸入的字串是否是一個合法的手機號
  ///
  ///  ///
  public static bool IsMobilePhone(string input)
  {
   Regex regex = new Regex("^13\\d{9}$");
   return regex.IsMatch(input);
   
  }

  ///

  /// 判斷輸入的字串只包含數字
  /// 可以匹配整數和浮點數
  /// ^-?\d+$|^(-?\d+)(\.\d+)?$
  ///
  ///  ///
  public static bool IsNumber(string input)
  {
   string pattern = "^-?\\d+$|^(-?\\d+)(\\.\\d+)?$";
   Regex regex = new Regex(pattern);
   return regex.IsMatch(input);
  }
  ///

  /// 匹配非負整數
  ///
  ///
  ///  ///
  public static bool IsNotNagtive(string input)
  {
   Regex regex = new Regex(@"^\d+$");
   return regex.IsMatch(input);
  }
  ///

  /// 匹配正整數
  ///
  ///  ///
  public static bool IsUint(string input)
  {
   Regex regex = new Regex("^[0-9]*[1-9][0-9]*$");
   return regex.IsMatch(input);
  }

/// 匹配非負浮點數
  ///
  /// ^(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*))$

  ///

  /// 判斷輸入的字串字包含英文字母
  ///
  ///  ///
  public static bool IsEnglisCh(string input)
  {
   Regex regex = new Regex("^[A-Za-z]+$");
   return regex.IsMatch(input);
  }

  ///

  /// 判斷輸入的字串是否是一個合法的Email地址
  ///
  ///  ///
  public static bool IsEmail(string input)
  {
   string pattern = @"^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$";
   Regex regex = new Regex(pattern);
   return regex.IsMatch(input);
  }

  ///

  /// 判斷輸入的字串是否只包含數字和英文字母
  ///
  ///  ///
  public static bool IsNumAndEnCh(string input)
  {
   string pattern = @"^[A-Za-z0-9]+$";
   Regex regex = new Regex(pattern);
   return regex.IsMatch(input);
  }

  ///

  /// 判斷輸入的字串是否是一個超連結
  ///
  ///  ///
  public static bool IsURL(string input)
  {
   //string pattern = @"http://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?";
   string pattern = @"^[a-zA-Z]+://(\w+(-\w+)*)(\.(\w+(-\w+)*))*(\?\S*)?$";
   Regex regex = new Regex(pattern);
   return regex.IsMatch(input);
  }

  ///

  /// 判斷輸入的字串是否是表示一個IP地址
  ///
  ///  /// 是IP地址則為True
  public static bool IsIPv4(string input)
  {
   
   string[] IPs = input.Split('.');
   Regex regex = new Regex(@"^\d+$");
   for(int i = 0; i   {
    if(!regex.IsMatch(IPs[i]))
    {
     return false;
    }
    if(Convert.ToUInt16(IPs[i]) > 255)
    {
     return false;
    }
   }
   return true;
  }

  ///

  /// 計算字串的字元長度,一個漢字字元將被計算為兩個字元
  ///
  ///  /// 返回字串的長度
  public static int GetCount(string input)
  {
   return Regex.Replace(input,@"[\u4e00-\u9fa5/g]","aa").Length;
  }

  ///

  /// 調用Regex中IsMatch函數實現一般的Regex匹配
  ///
  ///  ///  /// 如果Regex找到匹配項,則為 true;否則,為 false。
  public static bool IsMatch(string pattern, string input)
  {
   Regex regex = new Regex(pattern);
   return regex.IsMatch(input);
  }
  
  ///

  /// 從輸入字串中的第一個字元開始,用替換字串替換指定的Regex模式的所有匹配項。
  ///
  ///  ///  ///  /// 返回被替換後的結果
  public static string Replace(string pattern, string input, string replacement)
  {
   Regex regex = new Regex(pattern);
   return regex.Replace(input,replacement);
  }

  ///

  /// 在由Regex模式定義的位置拆分輸入字串。
  ///
  ///  ///  ///
  public static string[] Split(string pattern, string input)
  {
   Regex regex = new Regex(pattern);
   return regex.Split(input);
  }
  ///

  /// 判斷輸入的字串是否是合法的IPV6 地址
  ///
  ///  ///
  public static bool IsIPV6(string input)
  {
   string pattern = "";
   string temp = input;
   string[] strs = temp.Split(':');
   if(strs.Length > 8)
   {
    return false;
   }
   int count = MetarnetRegex.GetStringCount(input,"::");
   if(count>1)
   {
    return false;
   }
   else if(count == 0)
   {
    pattern = @"^([\da-f]{1,4}:){7}[\da-f]{1,4}$";

    Regex regex = new Regex(pattern);
    return regex.IsMatch(input);
   }
   else
   {
    pattern = @"^([\da-f]{1,4}:){0,5}::([\da-f]{1,4}:){0,5}[\da-f]{1,4}$";
    Regex regex1 = new Regex(pattern);
    return regex1.IsMatch(input);
   }

  }
  /* *******************************************************************
   * 1、通過“:”來分割字串看得到的字串數組長度是否小於等於8
   * 2、判斷輸入的IPV6字串中是否有“::”。
   * 3、如果沒有“::”採用 ^([\da-f]{1,4}:){7}[\da-f]{1,4}$ 來判斷
   * 4、如果有“::” ,判斷"::"是否止出現一次
   * 5、如果出現一次以上 返回false
   * 6、^([\da-f]{1,4}:){0,5}::([\da-f]{1,4}:){0,5}[\da-f]{1,4}$
   * ******************************************************************/
  ///

  /// 判斷字串compare 在 input字串中出現的次數
  ///
  ///  ///  /// 字串compare 在 input字串中出現的次數
  private static int GetStringCount(string input, string compare)
  {
   int index = input.IndexOf(compare);
   if(index != -1)
   {
    return 1 + GetStringCount(input.Substring(index + compare.Length),compare);
   }
   else
   {
    return 0;
   }

  }
 }
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.