アットウィキロゴ

99p-@

function myFunction() {
 
  var str = "   ルビー・スパークス ";
 
  str=str.trim();
 
 
   var uu = "https://ja.wikipedia.org/wiki/"+encodeURIComponent(str);
  Logger.log(uu);
 
 
      str="";
      try {
 
 var response = UrlFetchApp.fetch(uu);
 str=response.getContentText();
 
    } 
    catch (e) {}
 
 
   p1=str.indexOf("wgArticleId");
   p1=str.indexOf(":",p1);
   p2=str.indexOf(",",p1);
   c=str.substring(p1+1,p2);
 
   Logger.log(c); 
 
  p1=str.indexOf("<title>");
   p2=str.indexOf("</title>",p1);
  t=str.substring(p1,p2);
 
   Logger.log(t); 
 
}
 
最終更新:2017年09月25日 00:08