Я использовал скрипт, размещенный здесь в большой таблице Google, чтобы заменить строку на число.
Отлично работает, но проблема в том, что дата превращается в строку .
Я считаю, что проблема в методе toString()
, но я не смог найти альтернативы, чтобы заставить код работать.
=> У кого-нибудь есть идеи, чтобы избежать этой проблемы?
Сценарий
function runReplaceInSheet(){
var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Sheet3");
// get the current data range values as an array
// Fewer calls to access the sheet -> lower overhead
var values = sheet.getDataRange().getValues();
// Replace
replaceInSheet(values, 'datateam', '42007860');
// Write all updated values to the sheet, at once
sheet.getDataRange().setValues(values);
}
function replaceInSheet(values, to_replace, replace_with) {
//loop over the rows in the array
for(var row in values){
//use Array.map to execute a replace call on each of the cells in the row.
var replaced_values = values[row].map(function(original_value) {
return original_value.toString().replace(to_replace,replace_with);
});
//replace the original row values with the replaced values
values[row] = replaced_values;
}
}
До
После