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);
}
}
}
Oi, eu fiz para você este código simples. Graças a isso, você pode escolher na opção de planilha atual Automation > Excluir Enters e script substituem automaticamente \ n para ""
Você pode alterar esta linha:
tempText = tempText.replace(/\n/g,"");
para o seu próprio regex, se você quiser substituir entradas por outra coisa.