程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> 其他數據庫知識 >> MSSQL >> SQLServer 輪回批處置

SQLServer 輪回批處置

編輯:MSSQL

SQLServer 輪回批處置。本站提示廣大學習愛好者:(SQLServer 輪回批處置)文章只能為提供參考,不一定能成為您想要的結果。以下是SQLServer 輪回批處置正文


為了可以或許更好地輿解若何在C#情況中應用正則表達式,我寫出一些對你來講能夠有效的正則表達式,這些表達式在其他的情況中都被應用過,願望可以或許對你有所贊助。 
羅馬數字
string p1 = "^m*(d?c{0,3}|c[dm])" + "(l?x{0,3}|x[lc])(v?i{0,3}|i[vx])$"; 
  string t1 = "vii"; 
  Match m1 = Regex.Match(t1, p1); 
交流前二個單詞 
string t2 = "the quick brown fox"; 
  string p2 = @"(\S+)(\s+)(\S+)"; 
  Regex x2 = new Regex(p2); 
  string r2 = x2.WordStr(t2, "$3$2$1", 1); 
關健字=值
string t3 = "myval = 3"; 
  string p3 = @"(\w+)\s*=\s*(.*)\s*$"; 
  Match m3 = Regex.Match(t3, p3); 
完成每行80個字符
string t4 = "********************" 
   + "******************************" 
   + "******************************"; 
  string p4 = ".{80,}"; 
  Match m4 = Regex.Match(t4, p4); 
月/日/年 小時:分:秒的時光格局
string t5 = "01/01/01 16:10:01"; 
  string p5 = @"(\d+)/(\d+)/(\d+) (\d+):(\d+):(\d+)"; 
  Match m5 = Regex.Match(t5, p5); 
轉變目次(僅實用於Windows平台)
string t6 = @"C:\Documents and Settings\user1\Desktop\"; 
string r6 = Regex.WordStr(t6,@"\\user1\\", @"\\user2\\"); 
擴大16位本義符
string t7 = "%41"; // capital A 
  string p7 = "%([0-9A-Fa-f][0-9A-Fa-f])"; 
  string r7 = Regex.WordStr(t7, p7, HexConvert); 
刪除C說話中的正文(有待完美)
string t8 = @" 
  /* 
   * 傳統作風的正文 
   */ 
  "; 
  string p8 = @" 
   /\* # 婚配正文開端的定界符 
   .*? # 婚配正文 
   \*/ # 婚配正文停止定界符 
  "; 
  string r8 = Regex.WordStr(t8, p8, "", "xs"); 
刪除字符串中開端和停止處的空格
string t9a = " leading"; 
  string p9a = @"^\s+"; 
  string r9a = Regex.WordStr(t9a, p9a, ""); 
  string t9b = "trailing "; 
  string p9b = @"\s+$"; 
  string r9b = Regex.WordStr(t9b, p9b, ""); 
在字符\後添加字符n,使之成為真實的新行
string t10 = @"\ntest\n"; 
  string r10 = Regex.WordStr(t10, @"\\n", "\n"); 
轉換IP地址
string t11 = "55.54.53.52"; 
  string p11 = "^" + 
   @"([01]?\d\d|2[0-4]\d|25[0-5])\." + 
   @"([01]?\d\d|2[0-4]\d|25[0-5])\." + 
   @"([01]?\d\d|2[0-4]\d|25[0-5])\." + 
   @"([01]?\d\d|2[0-4]\d|25[0-5])" + 
   "$"; 
  Match m11 = Regex.Match(t11, p11); 
刪除文件名包括的途徑
string t12 = @"c:\file.txt"; 
  string p12 = @"^.*\\"; 
  string r12 = Regex.WordStr(t12, p12, ""); 
聯接多行字符串中的行
string t13 = @"this is 
  a split line"; 
  string p13 = @"\s*\r?\n\s*"; 
  string r13 = Regex.WordStr(t13, p13, " "); 
提取字符串中的一切數字 
string t14 = @" 
  test 1 
  test 2.3 
  test 47 
  "; 
  string p14 = @"(\d+\.?\d*|\.\d+)"; 
  MatchCollection mc14 = Regex.Matches(t14, p14); 
找出一切的年夜寫字母
string t15 = "This IS a Test OF ALL Caps"; 
  string p15 = @"(\b[^\Wa-z0-9_]+\b)"; 
  MatchCollection mc15 = Regex.Matches(t15, p15); 
找出小寫的單詞
string t16 = "This is A Test of lowercase"; 
  string p16 = @"(\b[^\WA-Z0-9_]+\b)"; 
  MatchCollection mc16 = Regex.Matches(t16, p16); 
找出第一個字母為年夜寫的單詞
string t17 = "This is A Test of Initial Caps"; 
  string p17 = @"(\b[^\Wa-z0-9_][^\WA-Z0-9_]*\b)"; 
  MatchCollection mc17 = Regex.Matches(t17, p17); 
找出簡略的HTML說話中的鏈接
string t18 = @" 
  <html> 
  <a href=""first.htm"">first tag text</a> 
  <a href=""next.htm"">next tag text</a> 
  </html> 
  "; 
  string p18 = @"<A[^>]*?HREF\s*=\s*[""']?" + @"([^'"" >]+?)[ '""]?>"; 
  MatchCollection mc18 = Regex.Matches(t18, p18, "si");
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved