2016年7月25日 星期一

regex 取得特殊字串中間的內容

string body = "<a href=\"http://google.com\">Google</a>";

MatchCollection matches = Regex.Matches(body
, "href=\"(?<item>[^\"]+)\""
, RegexOptions.IgnoreCase);
   
foreach (Match match in matches)
{
     string a = match.Groups["item"].Value;
     //oupt: http://google.com
}

標籤:

0 個意見:

張貼留言

訂閱 張貼留言 [Atom]

<< 首頁