Google脚本参考错误

时间:2018-07-24 06:44:45

标签: google-apps-script referenceerror

在Google表格中,我在A列中有很长的名称列表,在B列中有标签。我要使用函数来完成的任务是仅返回存储在函数list变量中的那些值。

当前我的脚本项目中有一个ReferenceError,但我不知道为什么。

我们将不胜感激。

function myFunction(cellInput) {
  var input = cellInput;
  var list = " word 1; word 2; word-3; word 4; word6; word-7;";
  var splitted_input = input.split("; ");    
  var splitted_list = list.split("; ");  

  var result = "";    
  for (var inc1 = 0; inc1 < splitted_list.length; inc1++) {
    for (var inc2 = 0; inc2 < splitted_input.length; inc2++) {
      var resSet = new Set(result.split("; "));
      if(splitted_list[inc1] == splitted_input[inc2] && !resSet.has(splitted_input[inc2])) {
        result = result + splitted_input[inc2] + "; ";
      }
    }
  }
  return result;
}

0 个答案:

没有答案