Skip to content

Instantly share code, notes, and snippets.

View icarovirtual's full-sized avatar
🐕
É o Bubu Show

Ícaro icarovirtual

🐕
É o Bubu Show
View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Articles</title>
</head>
<body>
<h3>Filter</h3>
<form method="get">
// Deixar vazio, preencher caso deseje testar uma nota
const CHAVE_FORCADA = ""
// Para substituir múltiplos espaços
const MULTI_ESPACOS_REGEX = /\s{2,}/g;
// Para substituir um espaço
const UNI_ESPACO_REGEX = /\s{1}/g;
/** Pela assinatura da função executa ao abrir a planilha. */
function onOpen() {
SpreadsheetApp.getUi()