H..._。net 接受html标签参数">
当前位置:   article > 正文

.NET获取Html字符串中指定标签的指定属性的值

。net 接受html标签参数
using System.Text;
using System.Text.RegularExpressions;
//以上为要用到的命名空间

    /// <summary>
    /// 获取Html字符串中指定标签的指定属性的值 
    /// </summary>
    /// <param name="html">Html字符</param>
    /// <param name="tag">指定标签名</param>
    /// <param name="attr">指定属性名</param>
    /// <returns></returns>
    private List<string> GetHtmlAttr(string html, string tag, string attr)
    {

        Regex re = new Regex(@"(<" + tag + @"[\w\W].+?>)");
        MatchCollection imgreg = re.Matches(html);
        List<string> m_Attributes = new List<string>();
        Regex attrReg = new Regex(@"([a-zA-Z1-9_-]+)\s*=\s*(\x27|\x22)([^\x27\x22]*)(\x27|\x22)", RegexOptions.IgnoreCase);

        for (int i = 0; i < imgreg.Count; i++)
        {
            MatchCollection matchs = attrReg.Matches(imgreg[i].ToString());

            for (int j = 0; j < matchs.Count; j++)
            {
                GroupCollection groups = matchs[j].Groups;

                if (attr.ToUpper() == groups[1].Value.ToUpper())
                {
                    m_Attributes.Add(groups[3].Value);
                    break;
                }
            }

        }

        return m_Attributes;

    }

 

转载于:https://www.cnblogs.com/kongxiaoshuang/p/6648417.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/110646
推荐阅读
相关标签
  

闽ICP备14008679号