Google Apps Script入門【その5】のソースコード公開
どうも、靖宗です。 その4~5で作ったスクリプトのソースコードを公開しておきます。 function getLivePage(pageNum) { var url = "http://ch.nicovideo.jp/mentalist/live?&page=" + String(pageNum); var response = UrlFetchApp.fetch(url); return response.getContentText(); } function subPastParser(htmlText) { // 一致する文字列が返る return htmlText.match(/<section class=\"sub past\">([\s\S]*?)<\/section>/m)[1]; } function liveItemParser(htmlText) { // 一致する文字列の"配列"が返る return htmlText.match(/<div class=\"item_right\">[\s\S]*?<\/div>/gm); } function getLiveInfo(htmlText) { var returnObject = { /* lv_name: { title : "オックスフォードからお届け", date : "2018/08/08", dayOfWeek : "水", time : "20:00:00" }, */ }; var liveInfoArray = liveItemParser(htmlText); for(var i = 0; i < liveInfoArray.length; i++){ var liveName = liveInfoArray[i].match(/<a href=\"http:\/\/live.n...