bicutit
Search Sexy Womans from your city for night
- Tham gia
- 26/11/10
- Bài viết
- 58
- Được thích
- 2
- Giới tính
- Nam
- Nghề nghiệp
- Search
Chào các bác,
Em đang dùng script sau: để thay thế "banhmi," = "banhmis,"
nhưng khi thêm 1 lệnh để thay thế "banhmi " = "banhmis " thì lệnh không có tác dụng
Bác nào có biết nguyên nhân và cách khắc phục không ạ?
Note: ở lệnh thứ 2 thì sau chữ i là space
Xin cảm ơn
function testReplaceInSheet(){
var sheet = SpreadsheetApp.getActiveSheet()
replaceInSheet(sheet,'banhmi','banhmis');
replaceInSheet(sheet,'banhmi ','banhmis ');
}
function replaceInSheet(sheet, to_replace, replace_with) {
//get the current data range values as an array
var values = sheet.getDataRange().getValues();
//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;
}
//write the updated values to the sheet
sheet.getDataRange().setValues(values);
}
Em đang dùng script sau: để thay thế "banhmi," = "banhmis,"
nhưng khi thêm 1 lệnh để thay thế "banhmi " = "banhmis " thì lệnh không có tác dụng
Bác nào có biết nguyên nhân và cách khắc phục không ạ?
Note: ở lệnh thứ 2 thì sau chữ i là space
Xin cảm ơn
function testReplaceInSheet(){
var sheet = SpreadsheetApp.getActiveSheet()
replaceInSheet(sheet,'banhmi','banhmis');
replaceInSheet(sheet,'banhmi ','banhmis ');
}
function replaceInSheet(sheet, to_replace, replace_with) {
//get the current data range values as an array
var values = sheet.getDataRange().getValues();
//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;
}
//write the updated values to the sheet
sheet.getDataRange().setValues(values);
}