是否可以将此代码调整为"获取结果并保存文件"仅当fetched url中的文本包含已定义的文本时。例如" 12345"或文字" abc是X"其中X是数> 5 注意:我需要检查两个表达式(" 12345"" abc是X")并保存文件(如果满足其中任何一个)
function fetchData() {
var exportUrl = RESOURCE_URL;
var response = UrlFetchApp.fetch(exportUrl);
var htmlBody = response.getContentText();
var blob = Utilities.newBlob(htmlBody, 'text/html').getAs('application/pdf').setName(FILE_NAME);
return folder.createFile(blob);
}