程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> 常用正則表達式 check

常用正則表達式 check

編輯:C#入門知識

[csharp]
      private static Regex RegPhone = new Regex("^[0-9]+[-]?[0-9]+[-]?[0-9]{1}$"); 
private static Regex RegNumber = new Regex("^[0-9]+{1}$"); 
private static Regex RegNumberSign = new Regex("^[+-]?[0-9]+{1}$"); 
private static Regex RegDecimal = new Regex("^[0-9]+[.]?[0-9]+{1}$"); 
private static Regex RegDecimalSign = new Regex("^[+-]?[0-9]+[.]?[0-9]+{1}$"); //等價於^[+-]?\d+[.]?\d+$ 
private static Regex RegEmail = new Regex("^[\\w-]+@[\\w-]+\\.(com|net|org|edu|mil|tv|biz|info){1}$");//w 英文字母或數字的字符串,和 [a-zA-Z0-9] 語法一樣  
private static Regex RegCHZN = new Regex("[\u4e00-\u9fa5]");//是否有中文 

 一個例子:

 

[csharp]
#region 中文檢測 
 
/// <summary> 
/// 檢測是否有中文字符 
/// </summary> 
/// <param name="inputData"></param> 
/// <returns></returns> 
public static bool IsHasCHZN(string inputData) 

    Match m = RegCHZN.Match(inputData); 
    return m.Success; 
}    
 
#endregion 


摘自 keenweiwei的專欄

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved