var ui = SpreadsheetApp.getUi();
function onOpen() {
var ui = SpreadsheetApp.getUi();
ui.createMenu('Automation')
.addItem('Delete Enters', 'deleteEnters')
.addToUi();
}
function deleteEnters() {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
if (!sheet){
ui.alert("There is no sheet with config!");
}
var lastColumn = sheet.getLastColumn();
var lastRow = sheet.getLastRow();
for (i = 1; i <= lastColumn; i++) {
for (j = 1; j <= lastRow; j++) {
var tempText = sheet.getRange(j,i).getValue();
tempText = tempText.replace(/\n/g,"");
sheet.getRange(j, i).setValue(tempText);
}
}
}
Xin chào, tôi đã làm cho bạn mã đơn giản này. Nhờ vào điều này, bạn có thể chọn tùy chọn trang tính hiện tại Tự động hóa> Xóa mục nhập và tập lệnh tự động thay thế \ n cho ""
Bạn có thể thay đổi dòng này:
tempText = tempText.replace(/\n/g,"");
cho regex của riêng bạn, nếu bạn muốn thay thế nhập vào một cái gì đó khác.