亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

C# 寫個正則匹配html中的JS文件

C# 寫個正則匹配html中的JS文件

C#
慕勒3428872 2018-07-28 09:08:51
.求寫個正則,十分感謝。如何獲取JS腳本文件的路徑
查看完整描述

2 回答

?
湖上湖

TA貢獻2003條經驗 獲得超2個贊

 List<string> GetJsFiles(string htmlPath)
        {
            List<string> jsFiles = new List<string>();            string spacePattern = @"\s*";            string srcPattern = string.Format("src{0}={0}\"(?<srcPath>[^\"]*)\"", spacePattern);            string scriptPattern = string.Format(@"\<script[^\>]*{0}[^\>]*\>", srcPattern);            string htmlContent = File.ReadAllText(htmlPath);
            MatchCollection ms = Regex.Matches(htmlContent, scriptPattern, RegexOptions.IgnoreCase);            if (ms.Count > 0)
            {                for (int i = 0; i < ms.Count; i++)
                {                    if (ms[i].Success)
                    {                        string srcPath = ms[i].Groups["srcPath"].Value;
                        jsFiles.Add(srcPath);
                    }
                }
            }            return jsFiles;
        }


查看完整回答
反對 回復 2018-07-30
  • 2 回答
  • 0 關注
  • 973 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號