• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
人生之路,职业之路
读书使人充实,交谈使人机敏,写记使人精确;
“动因+兴趣”——决心-持之以恒-见效
博客园    首页    新随笔    联系   管理    订阅  订阅
(原)C#正则表达式举例,采用正则表达式找出html,css,js文件中的图片路径

正则:

查找Img标签开头的图片路径
[iI][mM][gG][\s]*[sS][rR][cC][\s]*=[\s'"]*(?<ref_value>.*?(\.gif|\.jpg|\.png))

查找Function中的图片路径
[a-zA-Z_][a-zA-Z0-9_]+[\s]*\([^)]+?('|")(?<ref_value>[a-zA-Z0-9/\\-_\.]+?(\.gif|\.jpg|\.png))('|")[^)]*\)

查找background标签的图片路径
background="(?<ref_value>[^"]+)

查找URL的图片路径
:[\s]*url[\s]*\([\s"']*(?<ref_value>["']*[^)]+)

通用的:
("|')(?<ref_value>[^"']+?(\.gif|\.png|\.jpg))("|')


url\(['\"]?\s*(?<ref_value>[^>]+?)['\"]?\s*\)
Cimg[\d+]*[\s]*\([\s"']*(?<ref_value>[^"')]+)

 

 

private IList<string> MatchImgPath(string content, string regexPattern)
        {
            IList<string> _ret = new List<string>();
            Regex reg = new Regex(regexPattern);
            string _imgPath = "";
            MatchCollection mc = reg.Matches(content);
            if (mc != null && mc.Count > 0)
            {
                foreach (Match match in mc)
                {
                    if (match.Success == false || match.Value == null || match.Value == "")
                        continue;

                    foreach (string name in reg.GetGroupNames())
                    {
                        if (name == null || name == "" || name == "0")
                            continue;

                        if (name == "ref_value"
                            && match.Groups[name].Value != null
                            && match.Groups[name].Value != "")
                        {
                            _imgPath = match.Groups[name].Value;
                            if(!_ret.Contains(_imgPath.ToLower()))
                                _ret.Add(_imgPath.ToLower());
                        }
                    }
                }
            }
            return _ret;
        }

posted on 2009-03-25 10:01  FreeBird  阅读(926)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3