程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#中的正則表達式詳解(8)

C#中的正則表達式詳解(8)

編輯:關於C語言

找出所有的大寫字母

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