0

有没有办法突出显示使用 google doc 查看的 docx 文件中的特定单词

示例:我有以下文档,我正在使用谷歌文档查看它,我需要在文档中用另一种颜色突出显示“步骤”字样

谷歌文档文档

除了打开文档、编辑、保存然后将其返回到 Google 文档查看器之外,还有其他可用的方法吗?

4

1 回答 1

0

您可以使用Google Apps 脚本来创建、访问和修改 Google Docs 文件。

这是文档中将一半文本更改为蓝色的示例:

 var body = DocumentApp.getActiveDocument().getBody();

 // Use editAsText to obtain a single text element containing
 // all the characters in the document.
 var text = body.editAsText();

 // Insert text at the beginning of the document.
 text.insertText(0, 'Inserted text.\n');

 // Insert text at the end of the document.
 text.appendText('\nAppended text.');

 // Make the first half of the document blue.
 text.setForegroundColor(0, text.getText().length / 2, '#00FFFF');

要突出显示特定单词,您可以使用findText()

于 2015-11-16T10:53:59.767 回答