如何搜索字符串并从谷歌应用程序脚本中的电子邮件返回该字符串?

时间:2012-12-27 06:41:23

标签: google-apps-script

我可以提取电子邮件的正文,但我找不到搜索该正文的方法。 findText仅适用于文档,我还没有找到将电子邮件放入文档的方法。电子邮件中的搜索仅返回我已经拥有的整个电子邮件。我是以错误的方式看待这个还是错过了什么?

1 个答案:

答案 0 :(得分:0)

假设您可以将电子邮件的正文作为字符串获取,您可以尝试以下方法:

var doc = DocumentApp.getActiveDocument();

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

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

//Find search for your results
text.findText(searchPattern)

我不熟悉Google-Script,但我希望这可能会指向正确的方向。

https://developers.google.com/apps-script/class_text