程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> asp.net(c#)獲取內容第一張圖片地址的函數

asp.net(c#)獲取內容第一張圖片地址的函數

編輯:ASP.NET基礎

首先找到內容裡面第一個<img標簽的位置,然後找到從這個起的第一個>的位置,得到第一張圖片的完整標簽。

然後通過分隔空格得到圖片的各個屬性和屬性值,提取src的值就是圖片的地址

代碼如下:
復制代碼 代碼如下:
/// <summary>
/// 獲取文中圖片地址
/// </summary>
/// <param name="content">內容</param>
/// <returns>地址字符串</returns>
public static string getImageUrl(string content)
{
int mouse = 0;
int cat = 0;
string imageLabel = "";
string imgSrc = "";
string[] Attributes;

do //得到第一張圖片的連接作為主要圖片
{
cat = content.IndexOf("<IMG", mouse);
mouse = content.IndexOf('>', cat);
imageLabel = content.Substring(cat, mouse - cat); //圖像標簽

Attributes = imageLabel.Split(' '); //將圖片屬性分開

foreach (string temp_Attributes in Attributes) //得到圖片地址屬性
if (temp_Attributes.IndexOf("src") >= 0)
{
imgSrc = temp_Attributes.ToString();
break;
}
imgSrc = imgSrc.Substring(imgSrc.IndexOf('"') + 1, imgSrc.LastIndexOf('"') - imgSrc.IndexOf('"') - 1); //叢地址屬性中提取地址

} while (imgSrc == "" && cat > 0);

return (imgSrc);
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved