有没有办法检查单元格中的单词?

时间:2019-05-26 17:05:46

标签: javascript if-statement google-apps-script google-sheets

我正在寻找一种检查单元格是否包含Google Apps脚本和Google表格中文本的方法。

var cell = "Joe, Bob, Tim, John"

//I would want this to execute
if(cell contains "Tim") {
//code
}

1 个答案:

答案 0 :(得分:2)

最近,在TextFinder服务中添加了一个SpreadsheetApp类,使您可以在线Range(或Sheet甚至是{{ 1}}本身)。有关更多详细信息,请参见documentation。只需在带有Spreadsheet的上下文中将查找器设置为您要查找的文本作为参数。 在生成的createTextFinder()实例上调用findNext()方法将返回被调用的TextFinderRange(如果未找到)。例如:

null