正規式-取得圖片來源
2014年5月29日 星期四
取出圖片來源方式
string regular1 = "<img.+?src=[\"'](.+?)[\"'].*?>";
foreach (Match item in Regex.Matches(str, regular1))
{
string name = item.Groups[1].Value;
}
參考來源:
http://stackoverflow.com/questions/4257359/regular-expression-to-get-the-src-of-images-in-c-sharp
線上測試網站:
Read more...