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