0
A
回答
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++;
}
相關問題
- 1. 從字符串中刪除特殊字符在Groovy腳本中
- 2. GAWK使用特殊字符的腳本
- 3. 在Sikuli腳本中的特殊字符
- 4. 使用bash/sh腳本從字符串中刪除特定和特殊字符
- 5. 如何在構建JSON字符串時轉義特殊字符?
- 6. 一個字符串替換shell腳本中的字符串特殊字符
- 7. Bash:在文本文件中插入字符串後的特殊字符文本
- 8. Shell腳本來檢查字符串和特殊字符
- 9. 使用sed替換包含特殊字符的shell腳本中的字符串
- 10. PHP腳本中返回字符串的特殊字符使用JQuery POST
- 11. shell腳本中的特殊字符$
- 12. 參數在bash腳本特殊字符
- 13. 文本字段中的特殊字符
- 14. 在文本中轉義特殊字符
- 15. 在Google Charts中使用特殊字符
- 16. 如何在製表符文本中使用特殊字符?
- 17. awk腳本,以消除特殊字符
- 18. VB腳本忽略特殊字符
- 19. 在perl腳本的字符串中的幾個地方添加特殊字符
- 20. 使用printf如何在shell腳本中轉義特殊字符?
- 21. jq - 如何在shell腳本中轉義'*'(特殊字符)?使用
- 22. 如何在Bash腳本中爲conky創建特殊字符?
- 23. 搜索文本中的特殊字符
- 24. 垂直文本中的特殊字符
- 25. jQuery的higlighting特殊字符在文本
- 26. 用特殊字符替換字符串中的字符串
- 27. 如何在Ruby中替換字符串中的特殊文本?
- 28. 從Lotus腳本打印Word文檔時的特殊字符
- 29. 用特殊字符替換字符串
- 30. 用特殊字符分割字符串