无需替换值来确定单元格是否为空.Google Spreadsheet API已经有了一个方法:Range - isBlank方法
var cell = r.getCell(rws-1, 10); if (cell.isBlank()) { cell.setValue("foo"); }