Google App脚本中的.toUppercase()函数-如何使用Google脚本大写

时间:2019-03-25 11:27:22

标签: google-apps-script

我正在尝试在代码中使用大写字母,但是我在网上找到的所有内容都无效。有人知道我能做什么吗?

我尝试过的代码如下:

var doc = DocumentApp.getActiveDocument().getBody(); 
var text = doc.editAsText(); 
var letter = alphabet[Math.floor(Math.random()*alphabet.length)];
UPPER(letter); also letter.toUppercase() return letter;

0 个答案:

没有答案