2017年4月13日 星期四

C# Regex.Match to get src for image tag


正規表達式,在分析截取網頁上<img /> 標籤上 src 內的值, 貼上程式碼做記錄


string text = "<img src='images/mypic.jpg' width='100' height='100' />";
string SRCString = Regex.Match(text, "<img.+?src=[\"](.+?)[\"].+?>", RegexOptions.IgnoreCase).Groups[1].Value;


附上來源 stackoverflow

沒有留言: