正则表达式获取图片的详细信息

public string getImgurlAll(string content)//获取图片地址  参数:字符串,无图时默认的图片地址
    {
        string html = content;
        string pattern = @"<IMG[^>]*?src/s*=/s*(""(?<src>[^""]+?)""|'(?<src>[^']+?)'|(?<src>[^/s>]+))[^>]*?>";
        Regex regex = new Regex(pattern, RegexOptions.Singleline | RegexOptions.IgnoreCase);
        Match m = regex.Match(html);
        string str = "";
        if (m.Success)
        {
            str = m.Groups[0].Value.ToString();
        }
        html = html.Remove(html.IndexOf(str), str.Length);
        return html;

    }

 

获取部分信息

  public string getImgurl(string content, string strdef)//获取html中图片地址
    {
        string html = content;
        string imgurl = "";
        string pattern = @"<IMG[^>]*?src/s*=/s*(""(?<src>[^""]+?)""|'(?<src>[^']+?)'|(?<src>[^/s>]+))[^>]*?>";
        // @"<img.*(src)=['""]?(?<link>[^'""/s])['""]?.*(//?>|[^>]*>)";
        Regex regex = new Regex(pattern, RegexOptions.Singleline | RegexOptions.IgnoreCase);

        foreach (Match m in regex.Matches(html))
        {
            imgurl += m.Groups["src"].Value.ToString();
            break;
        }

        if (imgurl == "")
        {
            imgurl = strdef;
        }

        return imgurl;
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值