正規表達式,在分析截取網頁上<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
討厭麻煩的過程
string text = "<img src='images/mypic.jpg' width='100' height='100' />";
string SRCString = Regex.Match(text, "<img.+?src=[\"](.+?)[\"].+?>", RegexOptions.IgnoreCase).Groups[1].Value;
int _count=0;
using (DataTable dt = new DataTable())
{
dt.Load(MyReader);
_count = dt.Rows.Count;//取得資料筆數
DataRow[] result = dt.Select();//dt 資料取得放到陣列
for(int a=0;a<_count;a++){
Response.Write(result[a]["FieldName"]);//列出欄位資料
}
}