在谷歌脚本中构建文本字符串时使用特殊字符

时间:2016-08-16 21:50:14

标签: google-apps-script

我正在尝试构建一个复杂的字符串,以便在Google脚本中动态插入新的公式。在VBA中你使用chr(34),在谷歌脚本中有类似的工作吗?

由于

1 个答案:

答案 0 :(得分:1)

通过此主题“Some common VBA functions translated to Google Apps Script”,您可以在幻灯片6中找到VBA中的function Chr(n)已在javascript中翻译:

 function Chr(n) {
  return String.fromCharCode(n);
}

您也可以在此Github中找到它。

有关如何在AppsScript中使用此功能的示例代码,请查看此link

var map = Maps.newStaticMap();
 for (var i = 0; i < route.legs.length; i++) {
   var leg = route.legs[i];
   if (i == 0) {
     // Add a marker for the start location of the first leg only.
     map.setMarkerStyle(markerSize, markerColor, String.fromCharCode(markerLetterCode));
     map.addMarker(leg.start_location.lat, leg.start_location.lng);
     markerLetterCode++;
   }
   map.setMarkerStyle(markerSize, markerColor, String.fromCharCode(markerLetterCode));
   map.addMarker(leg.end_location.lat, leg.end_location.lng);
   markerLetterCode++;
 }