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

來源:互聯網
上載者:User

首先找到內容裡面第一個<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);
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.