gpt4 book ai didi

google-apps-script - 查找文本(多次)并突出显示

转载 作者:行者123 更新时间:2023-12-02 15:24:34 25 4
gpt4 key购买 nike

我想在 Google 文档中找到某个单词的所有实例并突出显示它们(或评论 - 任何使其脱颖而出的内容)。我创建了以下函数,但它只查找单词的第一次出现(在本例中为“the”)。任何有关如何查找该单词的所有实例的想法将不胜感激!

function findWordsAndHighlight() {
var doc = DocumentApp.openById(Id);
var text = doc.editAsText();
//find word "the"
var result = text.findText("the");
//change background color to yellow
result.getElement().asText().setBackgroundColor(result.getStartOffset(), result.getEndOffsetInclusive(), "#FFFF00");
};

最佳答案

我知道这已经很老套了,但以下是我如何在 Google 脚本中向文本添加效果。下面的示例专门用于向文档中出现的所有特定字符串添加突出显示。

function highlightText(findMe) {
var body = DocumentApp.getActiveDocument().getBody();
var foundElement = body.findText(findMe);

while (foundElement != null) {
// Get the text object from the element
var foundText = foundElement.getElement().asText();

// Where in the Element is the found text?
var start = foundElement.getStartOffset();
var end = foundElement.getEndOffsetInclusive();

// Change the background color to yellow
foundText.setBackgroundColor(start, end, "#FCFC00");

// Find the next match
foundElement = body.findText(findMe, foundElement);
}
}

关于google-apps-script - 查找文本(多次)并突出显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11478471/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com