タイトルを取得する場合は以下のようになります。
function getTitle(url) { var response = UrlFetchApp.fetch(url); var myRegexp = /<title>([\s\S]*?)<\/title>/i; var match = myRegexp.exec(response.getContentText()); var title = match[1]; return title.replace(/(^\s+)|(\s+$)/g, ""); }