C#正則表達式實例
阿新 • • 發佈:2017-10-04
tree xxxxx star 最新 button single spl .com 正則
ECMAScript表示符合ECMAScript,這個值只能和IgnoreCase、Multiline、Complied連用
ExplicitCapture表示只保存顯式命名的組
IgnoreCase表示不區分輸入的大小寫
IgnorePatternWhitespace表示去掉模式中的非轉義空白,並啟用由#標記的註釋
Multiline表示多行模式,改變元字符^和$的含義,它們可以匹配行的開頭和結尾
None表示無設置,此枚舉項沒有意義
RightToLeft表示從右向左掃描、匹配,這時,靜態的Match方法返回從右向左的第一個匹配
Singleline表示單行模式,改變元字符.的意義,它可以匹配換行符
註意:Multiline在沒有ECMAScript的情況下,可以和Singleline連用。Singleline和Multiline不互斥,但是和ECMAScript互斥。
②靜態的Matches方法
這個方法的重載形式同靜態的Match方法,返回一個MatchCollection,表示輸入中,匹配模式的匹配的集合。
③靜態的IsMatch方法
此方法返回一個bool,重載形式同靜態的Matches,若輸入中匹配模式,返回true,否則返回false。
可以理解為:IsMatch方法,返回Matches方法返回的集合是否為空。
關註 - 0
粉絲 - 5 +加關註 0 0 ? 上一篇:遍歷DataSet
? 下一篇:加密 posted @ 2016-11-08 17:02 狼牙者.net 閱讀(3764) 評論(0) 編輯 收藏 刷新評論刷新頁面返回頂部 註冊用戶登錄後才能發表評論,請 登錄 或 註冊,訪問網站首頁。 【推薦】50萬行VC++源碼: 大型組態工控、電力仿真CAD與GIS源碼庫
【推薦】搭建微信小程序 就選騰訊雲
【推薦】報表開發有捷徑:快速設計輕松集成,數據可視化和交互 最新IT新聞:
· 彭博:摩拜和ofo小黃車投資人正在商談合並
· 谷歌取消首次點擊免費,調整搜索規則只為安撫新聞機構
· 微軟宣布Office for Mac重大更新即將到來,敬請期待
· 借錢也要旅遊 30萬年輕人成“負遊族”:人均借款6000元
· 為進一步加大影響力 微軟在矽谷中心地帶買下65英畝
? 更多新聞... 最新知識庫文章:
· 實用VPC虛擬私有雲設計原則
· 如何閱讀計算機科學類的書
· Google 及其雲智慧
· 做到這一點,你也可以成為優秀的程序員
· 寫給立誌做碼農的大學生 ? 更多知識庫文章... 昵稱:狼牙者.net
園齡:1年9個月
粉絲:5
關註:0 +加關註
狼牙者.net
隨筆 - 74 文章 - 75 評論 - 5
C# 正則表達式大全
文章導讀
正則表達式的本質是使用一系列特殊字符模式,來表示某一類字符串。正則表達式無疑是處理文本最有力的工具,而.NET提供的Regex類實現了驗證正則表達式的方法。Regex 類表示不可變(只讀)的正則表達式。它還包含各種靜態方法,允許在不顯式創建其他類的實例的情況下使用其他正則表達式類。
基礎梳理
說明:
由於在正則表達式中“ \ ”、“ ? ”、“ * ”、“ ^ ”、“ $ ”、“ + ”、“(”、“)”、“ | ”、“ { ”、“ [ ”等字符已經具有一定特殊意義,如果需要用它們的原始意義,則應該對它進行轉義,例如 希 望在字符串中至少有一個“ \ ”,那麽正則表達式應該這麽寫: \\+ 。
RegEx類常用的方法
①靜態Match方法 使用靜態Match方法,可以得到源中第一個匹配模式的連續子串。 靜態的Match方法有2個重載,分別是Regex.Match(string input, string pattern); Regex.Match(string input, string pattern, RegexOptions options);第一種重載的參數表示:輸入、模式 第二種重載的參數表示:輸入、模式、RegexOptions枚舉的“按位或”組合。 RegexOptions枚舉的有效值是: Complied表示編譯此模式 CultureInvariant表示不考慮文化背景
RegEx類的實例
⑴字符串替換
//例如我想把如下格式記錄中的NAME值修改為WANG string line = "ADDR=1234;NAME=ZHANG;PHONE=6789"; Regex reg = new Regex("NAME=(.+);"); string modified = reg.Replace(line, "NAME=WANG;"); //修改後的字符串為 ADDR=1234;NAME=WANG;PHONE=6789
⑵字符串匹配
/例如我想把如下格式記錄中的NAME值修改為WANG string line = "ADDR=1234;NAME=ZHANG;PHONE=6789"; Regex reg = new Regex("NAME=(.+);"); //例如我想提取記錄中的NAME值 Match match = reg.Match(line); string value = match.Groups[1].Value; Console.WriteLine("value的值為:{0}", value);
⑷解碼gps的GPRMC字符串
//就可以獲得經度、緯度值,而以前需要幾十行代碼。 Regex reg = new Regex(@"^\$GPRMC,[\d\.]*,[A|V],(-?[0-9]*\.?[0-9]+),([NS]*),(-?[0-9]*\.?[0-9]+),([EW]*),.*");
命名空間說明
System.Text.RegularExpressions命名空間的說明
該名稱空間包括8個類,1個枚舉,1個委托。他們分別是:
//Capture: 包含一次匹配的結果; //CaptureCollection: Capture的序列; //Group: 一次組記錄的結果,由Capture繼承而來; //GroupCollection:表示捕獲組的集合 //Match: 一次表達式的匹配結果,由Group繼承而來; //MatchCollection: Match的一個序列; //MatchEvaluator: 執行替換操作時使用的委托; //RegexCompilationInfo:提供編譯器用於將正則表達式編譯為獨立程序集的信息 //RegexOptions 提供用於設置正則表達式的枚舉值 //Regex類中還包含一些靜態的方法: //Escape: 對字符串中的regex中的轉義符進行轉義; //IsMatch: 如果表達式在字符串中匹配,該方法返回一個布爾值; //Match: 返回Match的實例; //Matches: 返回一系列的Match的方法; //Replace: 用替換字符串替換匹配的表達式; //Split: 返回一系列由表達式決定的字符串; //Unescape:不對字符串中的轉義字符轉義。
C#正則常用表達式
㈠校驗數字的表達式
//數字 Regex reg = new Regex(@"^[0-9]*$"); //n位的數字 Regex reg = new Regex(@"^\d{n}$"); //至少n位的數字 Regex reg = new Regex(@"^\d{n,}$"); //m-n位的數字 Regex reg = new Regex(@"^\d{m,n}$"); //零和非零開頭的數字 Regex reg = new Regex(@"^(0|[1-9][0-9]*)$"); //非零開頭的最多帶兩位小數的數字 Regex reg = new Regex(@"^([1-9][0-9]*)+(.[0-9]{1,2})?$"); //帶1-2位小數的正數或負數 Regex reg = new Regex(@"^(\-)?\d+(\.\d{1,2})?$"); //正數、負數、和小數 Regex reg = new Regex(@"^(\-|\+)?\d+(\.\d+)?$"); //有兩位小數的正實數 Regex reg = new Regex(@"^[0-9]+(.[0-9]{2})?$"); //有1~3位小數的正實數 Regex reg = new Regex(@"^[0-9]+(.[0-9]{1,3})?$"); //非零的正整數 Regex reg = new Regex(@"^[1-9]\d*$ 或 ^([1-9][0-9]*){1,3}$ 或 ^\+?[1-9][0-9]*$"); //非零的負整數 Regex reg = new Regex(@"^\-[1-9][]0-9″*$ 或 ^-[1-9]\d*$"); //非負整數 Regex reg = new Regex(@"^\d+$ 或 ^[1-9]\d*|0$"); //非正整數 Regex reg = new Regex(@"^-[1-9]\d*|0$ 或 ^((-\d+)|(0+))$"); //非負浮點數 Regex reg = new Regex(@"^\d+(\.\d+)?$ 或 ^[1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0$"); //非正浮點數 Regex reg = new Regex(@"^((-\d+(\.\d+)?)|(0+(\.0+)?))$ 或 ^(-([1-9]\d*\.\d*|0\.\d*[1-9]\d*))|0?\.0+|0$"); //正浮點數 Regex reg = new Regex(@"^[1-9]\d*\.\d*|0\.\d*[1-9]\d*$ 或 ^(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*))$"); //負浮點數 Regex reg = new Regex(@"^-([1-9]\d*\.\d*|0\.\d*[1-9]\d*)$ 或 ^(-(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*)))$"); //浮點數 Regex reg = new Regex(@"^(-?\d+)(\.\d+)?$ 或 ^-?([1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0)$");
㈡校驗字符的表達式
//漢字 Regex reg = new Regex(@"^[\u4e00-\u9fa5]{0,}$"); //英文和數字 Regex reg = new Regex(@"^[A-Za-z0-9]+$ 或 ^[A-Za-z0-9]{4,40}$"); //長度為3-20的所有字符 Regex reg = new Regex(@"^.{3,20}$"); //由26個英文字母組成的字符串 Regex reg = new Regex(@"^[A-Za-z]+$"); //由26個大寫英文字母組成的字符串 Regex reg = new Regex(@"^[A-Z]+$"); //由26個小寫英文字母組成的字符串 Regex reg = new Regex(@"^[a-z]+$"); //由數字和26個英文字母組成的字符串 Regex reg = new Regex(@"^[A-Za-z0-9]+$"); //由數字、26個英文字母或者下劃線組成的字符串 Regex reg = new Regex(@"^\w+$ 或 ^\w{3,20}$"); //中文、英文、數字包括下劃線 Regex reg = new Regex(@"^[\u4E00-\u9FA5A-Za-z0-9_]+$"); //中文、英文、數字但不包括下劃線等符號 Regex reg = new Regex(@"^[\u4E00-\u9FA5A-Za-z0-9]+$ 或 ^[\u4E00-\u9FA5A-Za-z0-9]{2,20}$"); //可以輸入含有^%&’,;=?$\”等字符 Regex reg = new Regex(@"[^%&’,;=?$\x22]+"); //禁止輸入含有~的字符 Regex reg = new Regex(@"[^~\x22]+");
㈢特殊需求表達式
//Email地址 Regex reg = new Regex(@"^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$"); //域名 Regex reg = new Regex(@"[a-zA-Z0-9][-a-zA-Z0-9]{0,62}(/.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+/.?"); //InternetURL Regex reg = new Regex(@"[a-zA-z]+://[^\s]* 或 ^http://([\w-]+\.)+[\w-]+(/[\w-./?%&=]*)?$"); //手機號碼 Regex reg = new Regex(@"^(13[0-9]|14[5|7]|15[0|1|2|3|5|6|7|8|9]|18[0|1|2|3|5|6|7|8|9])\d{8}$"); //電話號碼(“XXX-XXXXXXX”、”XXXX-XXXXXXXX”、”XXX-XXXXXXX”、”XXX-XXXXXXXX”、”XXXXXXX”和”XXXXXXXX) Regex reg = new Regex(@"^($$\d{3,4}-)|\d{3.4}-)?\d{7,8}$"); //國內電話號碼(0511-4405222、021-87888822) Regex reg = new Regex(@"\d{3}-\d{8}|\d{4}-\d{7}"); //身份證號(15位、18位數字) Regex reg = new Regex(@"^\d{15}|\d{18}$"); //短身份證號碼(數字、字母x結尾) Regex reg = new Regex(@"^([0-9]){7,18}(x|X)?$ 或 ^\d{8,18}|[0-9x]{8,18}|[0-9X]{8,18}?$"); //帳號是否合法(字母開頭,允許5-16字節,允許字母數字下劃線) Regex reg = new Regex(@"^[a-zA-Z][a-zA-Z0-9_]{4,15}$"); //密碼(以字母開頭,長度在6~18之間,只能包含字母、數字和下劃線) Regex reg = new Regex(@"^[a-zA-Z]\w{5,17}$"); //強密碼(必須包含大小寫字母和數字的組合,不能使用特殊字符,長度在8-10之間) Regex reg = new Regex(@"^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,10}$"); //日期格式 Regex reg = new Regex(@"^\d{4}-\d{1,2}-\d{1,2}"); //一年的12個月(01~09和1~12) Regex reg = new Regex(@"^(0?[1-9]|1[0-2])$"); //一個月的31天(01~09和1~31) Regex reg = new Regex(@"^((0?[1-9])|((1|2)[0-9])|30|31)$"); //錢的輸入格式: //有四種錢的表示形式我們可以接受:”10000.00″ 和 “10,000.00”, 和沒有 “分” 的 “10000” 和 “10,000” Regex reg = new Regex(@"^[1-9][0-9]*$"); //這表示任意一個不以0開頭的數字,但是,這也意味著一個字符”0″不通過,所以我們采用下面的形式 Regex reg = new Regex(@"^(0|[1-9][0-9]*)$"); //一個0或者一個不以0開頭的數字.我們還可以允許開頭有一個負號 Regex reg = new Regex(@"^(0|-?[1-9][0-9]*)$"); //這表示一個0或者一個可能為負的開頭不為0的數字.讓用戶以0開頭好了.把負號的也去掉,因為錢總不能是負的吧.下面我們要加的是說明可能的小數部分 Regex reg = new Regex(@"^[0-9]+(.[0-9]+)?$"); //必須說明的是,小數點後面至少應該有1位數,所以”10.”是不通過的,但是 “10” 和 “10.2” 是通過的 Regex reg = new Regex(@"^[0-9]+(.[0-9]{2})?$"); //這樣我們規定小數點後面必須有兩位,如果你認為太苛刻了,可以這樣 Regex reg = new Regex(@"^[0-9]+(.[0-9]{1,2})?$"); //這樣就允許用戶只寫一位小數。下面我們該考慮數字中的逗號了,我們可以這樣 Regex reg = new Regex(@"^[0-9]{1,3}(,[0-9]{3})*(.[0-9]{1,2})?$"); //1到3個數字,後面跟著任意個 逗號+3個數字,逗號成為可選,而不是必須 Regex reg = new Regex(@"^([0-9]+|[0-9]{1,3}(,[0-9]{3})*)(.[0-9]{1,2})?$"); //備註:這就是最終結果了,別忘了”+”可以用”*”替代。如果你覺得空字符串也可以接受的話(奇怪,為什麽?)最後,別忘了在用函數時去掉去掉那個反斜杠,一般的錯誤都在這裏 //xml文件 Regex reg = new Regex(@"^([a-zA-Z]+-?)+[a-zA-Z0-9]+\\.[x|X][m|M][l|L]$"); //中文字符的正則表達式 Regex reg = new Regex(@"[\u4e00-\u9fa5]"); //雙字節字符 Regex reg = new Regex(@"[^\x00-\xff] (包括漢字在內,可以用來計算字符串的長度(一個雙字節字符長度計2,ASCII字符計1))"); //空白行的正則表達式,可用來刪除空白行 Regex reg = new Regex(@"\n\s*\r"); //HTML標記的正則表達式 Regex reg = new Regex(@"<(\S*?)[^>]*>.*?</\1>|<.*? />");// (網上流傳的版本太糟糕,上面這個也僅僅能部分,對於復雜的嵌套標記依舊無能為力) //首尾空白字符的正則表達式 Regex reg = new Regex(@"^\s*|\s*$或(^\s*)|(\s*$)");// (可以用來刪除行首行尾的空白字符(包括空格、制表符、換頁符等等),非常有用的表達式) //騰訊QQ號 Regex reg = new Regex(@"[1-9][0-9]{4,}"); //(騰訊QQ號從10000開始) //中國郵政編碼 Regex reg = new Regex(@"[1-9]\d{5}(?!\d)");// (中國郵政編碼為6位數字) //IP地址 Regex reg = new Regex(@"\d+\.\d+\.\d+\.\d+");// (提取IP地址時有用) //IP地址 Regex reg = new Regex(@"((?:(?:25[0-5]|2[0-4]\\d|[01]?\\d?\\d)\\.){3}(?:25[0-5]|2[0-4]\\d|[01]?\\d?\\d))");
使用demo
正則的使用可以分為驗證方法和匹配方法兩種
因上文對正則已經做了比較詳細的講解,故在此不多做贅述,直接貼出使用demo
1 public class Validator 2 { 3 #region 匹配方法 4 /// <summary> 5 /// 驗證字符串是否匹配正則表達式描述的規則 6 /// </summary> 7 /// <param name="inputStr">待驗證的字符串</param> 8 /// <param name="patternStr">正則表達式字符串</param> 9 /// <returns>是否匹配</returns> 10 public static bool IsMatch(string inputStr, string patternStr) 11 { 12 return IsMatch(inputStr, patternStr, false, false); 13 } 14 15 /// <summary> 16 /// 驗證字符串是否匹配正則表達式描述的規則 17 /// </summary> 18 /// <param name="inputStr">待驗證的字符串</param> 19 /// <param name="patternStr">正則表達式字符串</param> 20 /// <param name="ifIgnoreCase">匹配時是否不區分大小寫</param> 21 /// <returns>是否匹配</returns> 22 public static bool IsMatch(string inputStr, string patternStr, bool ifIgnoreCase) 23 { 24 return IsMatch(inputStr, patternStr, ifIgnoreCase, false); 25 } 26 27 /// <summary> 28 /// 驗證字符串是否匹配正則表達式描述的規則 29 /// </summary> 30 /// <param name="inputStr">待驗證的字符串</param> 31 /// <param name="patternStr">正則表達式字符串</param> 32 /// <param name="ifValidateWhiteSpace">是否驗證空白字符串</param> 33 /// <returns>是否匹配</returns> 34 public static bool IsMatch(string inputStr, string patternStr, bool ifValidateWhiteSpace) 35 { 36 return IsMatch(inputStr, patternStr, false, ifValidateWhiteSpace); 37 } 38 39 /// <summary> 40 /// 驗證字符串是否匹配正則表達式描述的規則 41 /// </summary> 42 /// <param name="inputStr">待驗證的字符串</param> 43 /// <param name="patternStr">正則表達式字符串</param> 44 /// <param name="ifIgnoreCase">匹配時是否不區分大小寫</param> 45 /// <param name="ifValidateWhiteSpace">是否驗證空白字符串</param> 46 /// <returns>是否匹配</returns> 47 public static bool IsMatch(string inputStr, string patternStr, bool ifIgnoreCase, bool ifValidateWhiteSpace) 48 { 49 if (!ifValidateWhiteSpace && string.IsNullOrWhiteSpace(inputStr))//.NET 4.0 新增IsNullOrWhiteSpace 方法,便於對用戶做處理 50 return false;//如果不要求驗證空白字符串而此時傳入的待驗證字符串為空白字符串,則不匹配 51 Regex regex = null; 52 if (ifIgnoreCase) 53 regex = new Regex(patternStr, RegexOptions.IgnoreCase);//指定不區分大小寫的匹配 54 else 55 regex = new Regex(patternStr); 56 return regex.IsMatch(inputStr); 57 } 58 #endregion 59 60 #region 驗證方法 61 /// <summary> 62 /// 驗證數字(double類型) 63 /// [可以包含負號和小數點] 64 /// </summary> 65 /// <param name="input">待驗證的字符串</param> 66 /// <returns>是否匹配</returns> 67 public static bool IsNumber(string input) 68 { 69 //string pattern = @"^-?\d+$|^(-?\d+)(\.\d+)?$"; 70 //return IsMatch(input, pattern); 71 double d = 0; 72 if (double.TryParse(input, out d)) 73 return true; 74 else 75 return false; 76 } 77 78 /// <summary> 79 /// 驗證整數 80 /// </summary> 81 /// <param name="input">待驗證的字符串</param> 82 /// <returns>是否匹配</returns> 83 public static bool IsInteger(string input) 84 { 85 //string pattern = @"^-?\d+$"; 86 //return IsMatch(input, pattern); 87 int i = 0; 88 if (int.TryParse(input, out i)) 89 return true; 90 else 91 return false; 92 } 93 94 /// <summary> 95 /// 驗證非負整數 96 /// </summary> 97 /// <param name="input">待驗證的字符串</param> 98 /// <returns>是否匹配</returns> 99 public static bool IsIntegerNotNagtive(string input) 100 { 101 //string pattern = @"^\d+$"; 102 //return IsMatch(input, pattern); 103 int i = -1; 104 if (int.TryParse(input, out i) && i >= 0) 105 return true; 106 else 107 return false; 108 } 109 110 /// <summary> 111 /// 驗證正整數 112 /// </summary> 113 /// <param name="input">待驗證的字符串</param> 114 /// <returns>是否匹配</returns> 115 public static bool IsIntegerPositive(string input) 116 { 117 //string pattern = @"^[0-9]*[1-9][0-9]*$"; 118 //return IsMatch(input, pattern); 119 int i = 0; 120 if (int.TryParse(input, out i) && i >= 1) 121 return true; 122 else 123 return false; 124 } 125 126 /// <summary> 127 /// 驗證小數 128 /// </summary> 129 /// <param name="input">待驗證的字符串</param> 130 /// <returns>是否匹配</returns> 131 public static bool IsDecimal(string input) 132 { 133 string pattern = @"^([-+]?[1-9]\d*\.\d+|-?0\.\d*[1-9]\d*)$"; 134 return IsMatch(input, pattern); 135 } 136 137 /// <summary> 138 /// 驗證只包含英文字母 139 /// </summary> 140 /// <param name="input">待驗證的字符串</param> 141 /// <returns>是否匹配</returns> 142 public static bool IsEnglishCharacter(string input) 143 { 144 string pattern = @"^[A-Za-z]+$"; 145 return IsMatch(input, pattern); 146 } 147 148 /// <summary> 149 /// 驗證只包含數字和英文字母 150 /// </summary> 151 /// <param name="input">待驗證的字符串</param> 152 /// <returns>是否匹配</returns> 153 public static bool IsIntegerAndEnglishCharacter(string input) 154 { 155 string pattern = @"^[0-9A-Za-z]+$"; 156 return IsMatch(input, pattern); 157 } 158 159 /// <summary> 160 /// 驗證只包含漢字 161 /// </summary> 162 /// <param name="input">待驗證的字符串</param> 163 /// <returns>是否匹配</returns> 164 public static bool IsChineseCharacter(string input) 165 { 166 string pattern = @"^[\u4e00-\u9fa5]+$"; 167 return IsMatch(input, pattern); 168 } 169 170 /// <summary> 171 /// 驗證數字長度範圍(數字前端的0計長度) 172 /// [若要驗證固定長度,可傳入相同的兩個長度數值] 173 /// </summary> 174 /// <param name="input">待驗證的字符串</param> 175 /// <param name="lengthBegin">長度範圍起始值(含)</param> 176 /// <param name="lengthEnd">長度範圍結束值(含)</param> 177 /// <returns>是否匹配</returns> 178 public static bool IsIntegerLength(string input, int lengthBegin, int lengthEnd) 179 { 180 //string pattern = @"^\d{" + lengthBegin + "," + lengthEnd + "}$"; 181 //return IsMatch(input, pattern); 182 if (input.Length >= lengthBegin && input.Length <= lengthEnd) 183 { 184 int i; 185 if (int.TryParse(input, out i)) 186 return true; 187 else 188 return false; 189 } 190 else 191 return false; 192 } 193 194 /// <summary> 195 /// 驗證字符串包含內容 196 /// </summary> 197 /// <param name="input">待驗證的字符串</param> 198 /// <param name="withEnglishCharacter">是否包含英文字母</param> 199 /// <param name="withNumber">是否包含數字</param> 200 /// <param name="withChineseCharacter">是否包含漢字</param> 201 /// <returns>是否匹配</returns> 202 public static bool IsStringInclude(string input, bool withEnglishCharacter, bool withNumber, bool withChineseCharacter) 203 { 204 if (!withEnglishCharacter && !withNumber && !withChineseCharacter) 205 return false;//如果英文字母、數字和漢字都沒有,則返回false 206 StringBuilder patternString = new StringBuilder(); 207 patternString.Append("^["); 208 if (withEnglishCharacter) 209 patternString.Append("a-zA-Z"); 210 if (withNumber) 211 patternString.Append("0-9"); 212 if (withChineseCharacter) 213 patternString.Append(@"\u4E00-\u9FA5"); 214 patternString.Append("]+$"); 215 return IsMatch(input, patternString.ToString()); 216 } 217 218 /// <summary> 219 /// 驗證字符串長度範圍 220 /// [若要驗證固定長度,可傳入相同的兩個長度數值] 221 /// </summary> 222 /// <param name="input">待驗證的字符串</param> 223 /// <param name="lengthBegin">長度範圍起始值(含)</param> 224 /// <param name="lengthEnd">長度範圍結束值(含)</param> 225 /// <returns>是否匹配</returns> 226 public static bool IsStringLength(string input, int lengthBegin, int lengthEnd) 227 { 228 //string pattern = @"^.{" + lengthBegin + "," + lengthEnd + "}$"; 229 //return IsMatch(input, pattern); 230 if (input.Length >= lengthBegin && input.Length <= lengthEnd) 231 return true; 232 else 233 return false; 234 } 235 236 /// <summary> 237 /// 驗證字符串長度範圍(字符串內只包含數字和/或英文字母) 238 /// [若要驗證固定長度,可傳入相同的兩個長度數值] 239 /// </summary> 240 /// <param name="input">待驗證的字符串</param> 241 /// <param name="lengthBegin">長度範圍起始值(含)</param> 242 /// <param name="lengthEnd">長度範圍結束值(含)</param> 243 /// <returns>是否匹配</returns> 244 public static bool IsStringLengthOnlyNumberAndEnglishCharacter(string input, int lengthBegin, int lengthEnd) 245 { 246 string pattern = @"^[0-9a-zA-z]{" + lengthBegin + "," + lengthEnd + "}$"; 247 return IsMatch(input, pattern); 248 } 249 250 /// <summary> 251 /// 驗證字符串長度範圍 252 /// [若要驗證固定長度,可傳入相同的兩個長度數值] 253 /// </summary> 254 /// <param name="input">待驗證的字符串</param> 255 /// <param name="withEnglishCharacter">是否包含英文字母</param> 256 /// <param name="withNumber">是否包含數字</param> 257 /// <param name="withChineseCharacter">是否包含漢字</param> 258 /// <param name="lengthBegin">長度範圍起始值(含)</param> 259 /// <param name="lengthEnd">長度範圍結束值(含)</param> 260 /// <returns>是否匹配</returns> 261 public static bool IsStringLengthByInclude(string input, bool withEnglishCharacter, bool withNumber, bool withChineseCharacter, int lengthBegin, int lengthEnd) 262 { 263 if (!withEnglishCharacter && !withNumber && !withChineseCharacter) 264 return false;//如果英文字母、數字和漢字都沒有,則返回false 265 StringBuilder patternString = new StringBuilder(); 266 patternString.Append("^["); 267 if (withEnglishCharacter) 268 patternString.Append("a-zA-Z"); 269 if (withNumber) 270 patternString.Append("0-9"); 271 if (withChineseCharacter) 272 patternString.Append(@"\u4E00-\u9FA5"); 273 patternString.Append("]{" + lengthBegin + "," + lengthEnd + "}$"); 274 return IsMatch(input, patternString.ToString()); 275 } 276 277 /// <summary> 278 /// 驗證字符串字節數長度範圍 279 /// [若要驗證固定長度,可傳入相同的兩個長度數值;每個漢字為兩個字節長度] 280 /// </summary> 281 /// <param name="input">待驗證的字符串</param> 282 /// <param name="lengthBegin">長度範圍起始值(含)</param> 283 /// <param name="lengthEnd">長度範圍結束值(含)</param> 284 /// <returns></returns> 285 public static bool IsStringByteLength(string input, int lengthBegin, int lengthEnd) 286 { 287 //int byteLength = Regex.Replace(input, @"[^\x00-\xff]", "ok").Length; 288 //if (byteLength >= lengthBegin && byteLength <= lengthEnd) 289 //{ 290 // return true; 291 //} 292 //return false; 293 int byteLength = Encoding.Default.GetByteCount(input); 294 if (byteLength >= lengthBegin && byteLength <= lengthEnd) 295 return true; 296 else 297 return false; 298 } 299 300 /// <summary> 301 /// 驗證日期 302 /// </summary> 303 /// <param name="input">待驗證的字符串</param> 304 /// <returns>是否匹配</returns> 305 public static bool IsDateTime(string input) 306 { 307 DateTime dt; 308 if (DateTime.TryParse(input, out dt)) 309 return true; 310 else 311 return false; 312 } 313 314 /// <summary> 315 /// 驗證固定電話號碼 316 /// [3位或4位區號;區號可以用小括號括起來;區號可以省略;區號與本地號間可以用減號或空格隔開;可以有3位數的分機號,分機號前要加減號] 317 /// </summary> 318 /// <param name="input">待驗證的字符串</param> 319 /// <returns>是否匹配</returns> 320 public static bool IsTelePhoneNumber(string input) 321 { 322 string pattern = @"^(((0\d2|0\d{2})[- ]?)?\d{8}|((0\d3|0\d{3})[- ]?)?\d{7})(-\d{3})?$"; 323 return IsMatch(input, pattern); 324 } 325 326 /// <summary> 327 /// 驗證手機號碼 328 /// [可匹配"(+86)013325656352",括號可以省略,+號可以省略,(+86)可以省略,11位手機號前的0可以省略;11位手機號第二位數可以是3、4、5、8中的任意一個] 329 /// </summary> 330 /// <param name="input">待驗證的字符串</param> 331 /// <returns>是否匹配</returns> 332 public static bool IsMobilePhoneNumber(string input) 333 { 334 string pattern = @"^((\+)?86|((\+)?86)?)0?1[3458]\d{9}$"; 335 return IsMatch(input, pattern); 336 } 337 338 /// <summary> 339 /// 驗證電話號碼(可以是固定電話號碼或手機號碼) 340 /// [固定電話:[3位或4位區號;區號可以用小括號括起來;區號可以省略;區號與本地號間可以用減號或空格隔開;可以有3位數的分機號,分機號前要加減號]] 341 /// [手機號碼:[可匹配"(+86)013325656352",括號可以省略,+號可以省略,(+86)可以省略,手機號前的0可以省略;手機號第二位數可以是3、4、5、8中的任意一個]] 342 /// </summary> 343 /// <param name="input">待驗證的字符串</param> 344 /// <returns>是否匹配</returns> 345 public static bool IsPhoneNumber(string input) 346 { 347 string pattern = @"^((\+)?86|((\+)?86)?)0?1[3458]\d{9}$|^(((0\d2|0\d{2})[- ]?)?\d{8}|((0\d3|0\d{3})[- ]?)?\d{7})(-\d{3})?$"; 348 return IsMatch(input, pattern); 349 } 350 351 /// <summary> 352 /// 驗證郵政編碼 353 /// </summary> 354 /// <param name="input">待驗證的字符串</param> 355 /// <returns>是否匹配</returns> 356 public static bool IsZipCode(string input) 357 { 358 //string pattern = @"^\d{6}$"; 359 //return IsMatch(input, pattern); 360 if (input.Length != 6) 361 return false; 362 int i; 363 if (int.TryParse(input, out i)) 364 return true; 365 else 366 return false; 367 } 368 369 /// <summary> 370 /// 驗證電子郵箱 371 /// [@字符前可以包含字母、數字、下劃線和點號;@字符後可以包含字母、數字、下劃線和點號;@字符後至少包含一個點號且點號不能是最後一個字符;最後一個點號後只能是字母或數字] 372 /// </summary> 373 /// <param name="input">待驗證的字符串</param> 374 /// <returns>是否匹配</returns> 375 public static bool IsEmail(string input) 376 { 377 ////郵箱名以數字或字母開頭;郵箱名可由字母、數字、點號、減號、下劃線組成;郵箱名(@前的字符)長度為3~18個字符;郵箱名不能以點號、減號或下劃線結尾;不能出現連續兩個或兩個以上的點號、減號。 378 //string pattern = @"^[a-zA-Z0-9]((?<!(\.\.|--))[a-zA-Z0-9\._-]){1,16}[a-zA-Z0-9]@([0-9a-zA-Z][0-9a-zA-Z-]{0,62}\.)+([0-9a-zA-Z][0-9a-zA-Z-]{0,62})\.?|((25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(25[0-5]|2[0-4]\d|[01]?\d\d?)$"; 379 string pattern = @"^([\w-\.]+)@([\w-\.]+)(\.[a-zA-Z0-9]+)$"; 380 return IsMatch(input, pattern); 381 } 382 383 /// <summary> 384 /// 驗證網址(可以匹配IPv4地址但沒對IPv4地址進行格式驗證;IPv6暫時沒做匹配) 385 /// [允許省略"://";可以添加端口號;允許層級;允許傳參;域名中至少一個點號且此點號前要有內容] 386 /// </summary> 387 /// <param name="input">待驗證的字符串</param> 388 /// <returns>是否匹配</returns> 389 public static bool IsURL(string input) 390 { 391 ////每級域名由字母、數字和減號構成(第一個字母不能是減號),不區分大小寫,單個域長度不超過63,完整的域名全長不超過256個字符。在DNS系統中,全名是以一個點“.”來結束的,例如“www.nit.edu.cn.”。沒有最後的那個點則表示一個相對地址。 392 ////沒有例如"http://"的前綴,沒有傳參的匹配 393 //string pattern = @"^([0-9a-zA-Z][0-9a-zA-Z-]{0,62}\.)+([0-9a-zA-Z][0-9a-zA-Z-]{0,62})\.?$"; 394 395 //string pattern = @"^(((file|gopher|news|nntp|telnet|http|ftp|https|ftps|sftp)://)|(www\.))+(([a-zA-Z0-9\._-]+\.[a-zA-Z]{2,6})|([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}))(/[a-zA-Z0-9\&%_\./-~-]*)?$"; 396 string pattern = @"^([a-zA-Z]+://)?([\w-\.]+)(\.[a-zA-Z0-9]+)(:\d{0,5})?/?([\w-/]*)\.?([a-zA-Z]*)\??(([\w-]*=[\w%]*&?)*)$"; 397 return IsMatch(input, pattern); 398 } 399 400 /// <summary> 401 /// 驗證IPv4地址 402 /// [第一位和最後一位數字不能是0或255;允許用0補位] 403 /// </summary> 404 /// <param name="input">待驗證的字符串</param> 405 /// <returns>是否匹配</returns> 406 public static bool IsIPv4(string input) 407 { 408 //string pattern = @"^(25[0-4]|2[0-4]\d]|[01]?\d{2}|[1-9])\.(25[0-5]|2[0-4]\d]|[01]?\d?\d)\.(25[0-5]|2[0-4]\d]|[01]?\d?\d)\.(25[0-4]|2[0-4]\d]|[01]?\d{2}|[1-9])$"; 409 //return IsMatch(input, pattern); 410 string[] IPs = input.Split(‘.‘); 411 if (IPs.Length != 4) 412 return false; 413 int n = -1; 414 for (int i = 0; i < IPs.Length; i++) 415 { 416 if (i == 0 || i == 3) 417 { 418 if (int.TryParse(IPs[i], out n) && n > 0 && n < 255) 419 continue; 420 else 421 return false; 422 } 423 else 424 { 425 if (int.TryParse(IPs[i], out n) && n >= 0 && n <= 255) 426 continue; 427 else 428 return false; 429 } 430 } 431 return true; 432 } 433 434 /// <summary> 435 /// 驗證IPv6地址 436 /// [可用於匹配任何一個合法的IPv6地址] 437 /// </summary> 438 /// <param name="input">待驗證的字符串</param> 439 /// <returns>是否匹配</returns> 440 public static bool IsIPv6(string input) 441 { 442 string pattern = @"^\s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(%.+)?\s*$"; 443 return IsMatch(input, pattern); 444 } 445 446 /// <summary> 447 /// 身份證上數字對應的地址 448 /// </summary> 449 //enum IDAddress 450 //{ 451 // 北京 = 11, 天津 = 12, 河北 = 13, 山西 = 14, 內蒙古 = 15, 遼寧 = 21, 吉林 = 22, 黑龍江 = 23, 上海 = 31, 江蘇 = 32, 浙江 = 33, 452 // 安徽 = 34, 福建 = 35, 江西 = 36, 山東 = 37, 河南 = 41, 湖北 = 42, 湖南 = 43, 廣東 = 44, 廣西 = 45, 海南 = 46, 重慶 = 50, 四川 = 51, 453 // 貴州 = 52, 雲南 = 53, 西藏 = 54, 陜西 = 61, 甘肅 = 62, 青海 = 63, 寧夏 = 64, 新疆 = 65, 臺灣 = 71, 香港 = 81, 澳門 = 82, 國外 = 91 454 //} 455 456 /// <summary> 457 /// 驗證一代身份證號(15位數) 458 /// [長度為15位的數字;匹配對應省份地址;生日能正確匹配] 459 /// </summary> 460 /// <param name="input">待驗證的字符串</param> 461 /// <returns>是否匹配</returns> 462 public static bool IsIDCard15(string input) 463 { 464 //驗證是否可以轉換為15位整數 465 long l = 0; 466 if (!long.TryParse(input, out l) || l.ToString().Length != 15) 467 { 468 return false; 469 } 470 //驗證省份是否匹配 471 //1~6位為地區代碼,其中1、2位數為各省級政府的代碼,3、4位數為地、市級政府的代碼,5、6位數為縣、區級政府代碼。 472 string address = "11,12,13,14,15,21,22,23,31,32,33,34,35,36,37,41,42,43,44,45,46,50,51,52,53,54,61,62,63,64,65,71,81,82,91,"; 473 if (!address.Contains(input.Remove(2) + ",")) 474 { 475 return false; 476 } 477 //驗證生日是否匹配 478 string birthdate = input.Substring(6, 6).Insert(4, "/").Insert(2, "/"); 479 DateTime dt; 480 if (!DateTime.TryParse(birthdate, out dt)) 481 { 482 return false; 483 } 484 return true; 485 } 486 487 /// <summary> 488 /// 驗證二代身份證號(18位數,GB11643-1999標準) 489 /// [長度為18位;前17位為數字,最後一位(校驗碼)可以為大小寫x;匹配對應省份地址;生日能正確匹配;校驗碼能正確匹配] 490 /// </summary> 491 /// <param name="input">待驗證的字符串</param> 492 /// <returns>是否匹配</returns> 493 public static bool IsIDCard18(string input) 494 { 495 //驗證是否可以轉換為正確的整數 496 long l = 0; 497 if (!long.TryParse(input.Remove(17), out l) || l.ToString().Length != 17 || !long.TryParse(input.Replace(‘x‘, ‘0‘).Replace(‘X‘, ‘0‘), out l)) 498 { 499 return false; 500 } 501 //驗證省份是否匹配 502 //1~6位為地區代碼,其中1、2位數為各省級政府的代碼,3、4位數為地、市級政府的代碼,5、6位數為縣、區級政府代碼。 503 string address = "11,12,13,14,15,21,22,23,31,32,33,34,35,36,37,41,42,43,44,45,46,50,51,52,53,54,61,62,63,64,65,71,81,82,91,"; 504 if (!address.Contains(input.Remove(2) + ",")) 505 { 506 return false; 507 } 508 //驗證生日是否匹配 509 string birthdate = input.Substring(6, 8).Insert(6, "/").Insert(4, "/"); 510 DateTime dt; 511 if (!DateTime.TryParse(birthdate, out dt)) 512 { 513 return false; 514 } 515 //校驗碼驗證 516 //校驗碼: 517 //(1)十七位數字本體碼加權求和公式 518 //S = Sum(Ai * Wi), i = 0, ... , 16 ,先對前17位數字的權求和 519 //Ai:表示第i位置上的身份證號碼數字值 520 //Wi:表示第i位置上的加權因子 521 //Wi: 7 9 10 5 8 4 2 1 6 3 7 9 10 5 8 4 2 522 //(2)計算模 523 //Y = mod(S, 11) 524 //(3)通過模得到對應的校驗碼 525 //Y: 0 1 2 3 4 5 6 7 8 9 10 526 //校驗碼: 1 0 X 9 8 7 6 5 4 3 2 527 string[] arrVarifyCode = ("1,0,x,9,8,7,6,5,4,3,2").Split(‘,‘); 528 string[] Wi = ("7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2").Split(‘,‘); 529 char[] Ai = input.Remove(17).ToCharArray(); 530 int sum = 0; 531 for (int i = 0; i < 17; i++) 532 { 533 sum += int.Parse(Wi[i]) * int.Parse(Ai[i].ToString()); 534 } 535 int y = -1; 536 Math.DivRem(sum, 11, out y); 537 if (arrVarifyCode[y] != input.Substring(17, 1).ToLower()) 538 { 539 return false; 540 } 541 return true; 542 } 543 544 /// <summary> 545 /// 驗證身份證號(不區分一二代身份證號) 546 /// </summary> 547 /// <param name="input">待驗證的字符串</param> 548 /// <returns>是否匹配</returns> 549 public static bool IsIDCard(string input) 550 { 551 if (input.Length == 18) 552 return IsIDCard18(input); 553 else if (input.Length == 15) 554 return IsIDCard15(input); 555 else 556 return false; 557 } 558 559 /// <summary> 560 /// 驗證經度 561 /// </summary> 562 /// <param name="input">待驗證的字符串</param> 563 /// <returns>是否匹配</returns> 564 public static bool IsLongitude(string input) 565 { 566 ////範圍為-180~180,小數位數必須是1到5位 567 //string pattern = @"^[-\+]?((1[0-7]\d{1}|0?\d{1,2})\.\d{1,5}|180\.0{1,5})$"; 568 //return IsMatch(input, pattern); 569 float lon; 570 if (float.TryParse(input, out lon) && lon >= -180 && lon <= 180) 571 return true; 572 else 573 return false; 574 } 575 576 /// <summary> 577 /// 驗證緯度 578 /// </summary> 579 /// <param name="input">待驗證的字符串</param> 580 /// <returns>是否匹配</returns> 581 public static bool IsLatitude(string input) 582 { 583 ////範圍為-90~90,小數位數必須是1到5位 584 //string pattern = @"^[-\+]?([0-8]?\d{1}\.\d{1,5}|90\.0{1,5})$"; 585 //return IsMatch(input, pattern); 586 float lat; 587 if (float.TryParse(input, out lat) && lat >= -90 && lat <= 90) 588 return true; 589 else 590 return false; 591 } 592 #endregion 593 }
好文要頂 關註我 收藏該文 狼牙者.net
關註 - 0
粉絲 - 5 +加關註 0 0 ? 上一篇:遍歷DataSet
? 下一篇:加密 posted @ 2016-11-08 17:02 狼牙者.net 閱讀(3764) 評論(0) 編輯 收藏 刷新評論刷新頁面返回頂部 註冊用戶登錄後才能發表評論,請 登錄 或 註冊,訪問網站首頁。 【推薦】50萬行VC++源碼: 大型組態工控、電力仿真CAD與GIS源碼庫
【推薦】搭建微信小程序 就選騰訊雲
【推薦】報表開發有捷徑:快速設計輕松集成,數據可視化和交互 最新IT新聞:
· 彭博:摩拜和ofo小黃車投資人正在商談合並
· 谷歌取消首次點擊免費,調整搜索規則只為安撫新聞機構
· 微軟宣布Office for Mac重大更新即將到來,敬請期待
· 借錢也要旅遊 30萬年輕人成“負遊族”:人均借款6000元
· 為進一步加大影響力 微軟在矽谷中心地帶買下65英畝
? 更多新聞... 最新知識庫文章:
· 實用VPC虛擬私有雲設計原則
· 如何閱讀計算機科學類的書
· Google 及其雲智慧
· 做到這一點,你也可以成為優秀的程序員
· 寫給立誌做碼農的大學生 ? 更多知識庫文章... 昵稱:狼牙者.net
園齡:1年9個月
粉絲:5
關註:0 +加關註
|
|||||||||
日 | 一 | 二 | 三 | 四 | 五 | 六 | |||
---|---|---|---|---|---|---|---|---|---|
24 | 25 | 26 | 27 | 28 | 29 | 30 | |||
1 | 2 | 3 | 4 | 5 | 6 | 7 | |||
8 | 9 | 10 | 11 | 12 | 13 | 14 | |||
15 | 16 | 17 | 18 | 19 | 20 | 21 | |||
22 | 23 | 24 | 25 | 26 | 27 | 28 | |||
29 | 30 | 31 | 1 | 2 | 3 | 4 |
搜索
常用鏈接
- 我的隨筆
- 我的評論
- 我的參與
- 最新評論
- 我的標簽
隨筆分類
- (增刪查改).ashx(9)
- [ASP.NET Webform](25)
- 1.一般處理 程序(2)
- asp.net MVC(16)
- asp.net利用存儲過程分頁代碼(1)
- asp.net增刪改(6)
- HTML5(2)
- webform三層架構(5)
- 母版頁的使用(3)
隨筆檔案
- 2017年7月 (1)
- 2017年6月 (1)
- 2016年12月 (24)
- 2016年11月 (12)
- 2016年10月 (2)
- 2016年9月 (1)
- 2016年8月 (9)
- 2016年7月 (1)
- 2016年6月 (1)
- 2016年5月 (1)
- 2016年3月 (3)
- 2016年2月 (2)
- 2016年1月 (14)
- 2015年12月 (2)
文章分類
- 3.sqlserver數據庫(15)
- 4.asp.net mvc(9)
- 7.Json對象序列化,反序列(4)
- asp.net mvc (筆記)(30)
- html(5)
- JQuery(6)
- LinQ 集合查詢(5)
- WCF(1)
- 留言板(1)
最新評論
- 1. Re:3.MVC各層直接的關系
- 6666666666666666
- 2. Re:ASP.NET從零開始學習EF的增刪改查
- 前端代碼,直接用td{ },tr{ }引入樣式就可以了,不用class="td"或class="tr"
- 3. Re:ASP.NET從零開始學習EF的增刪改查
- 每次訪問數據庫都using (StudentEntities ent = new StudentEntities())?
- 4. Re:圖片自動輪回
- 好,很好,繼續加油!
- 5. Re:BlogUser博客用戶,BlogArticle(博客文章),BlogAricleCate(博客文章分類表)
- 博客文章作家(AAuthor)列關聯博客用戶表id列。()
博客文章表:作家(Author)列外鍵關聯博客文章分類表的id。(作家列是int類型)
閱讀排行榜
- 1. C# 正則表達式大全(3764)
- 2. Asp.net讀取和寫入txt文件方法(實例)!(2296)
- 3. asp.net mvc(一) ----------簡單封裝成通用的List<T>集合(785)
- 4. C#中&與&&的區別(768)
- 5. treeview(樹加載)(525)
C#正則表達式實例