[Google Apps Script] Google ドキュメントに文字列を書き込む

作成日: 2021年09月05日

Body クラスの setText メソッドを使うと Google ドキュメントにテキストを書き込むことができます。追記ではなく、上書きとなりますので注意してください。

function main() {
  var doc = DocumentApp.openByUrl('https://example.com/some_document_url');
  var body = doc.getBody();
  body.setText('hello world');
}
Google Apps Script