18 online now
Customer reviews
Customers using it now
★★★★★
4,8 · 1.263+ average rating
Verified customer
Leave a review
Need help?

Talk to our team on WhatsApp and we will help you move forward.

💬
Minike Tools Banner

Sort Alphabetically

Sort Alphabetically

Sort words or lines alphabetically ascending or descending.

Gratis ate 10 MB por arquivo100 MB por enviosem anuncio antes do limite
$titulo = 'Ordenar Alfabeticamente'; $descricao = 'Ordene palavras, linhas ou itens em ordem alfabética crescente ou decrescente'; $palavrasChave = 'ordenar, alfabetico, organizar, lista, texto'; $texto = ''; $ordenacao = 'asc'; $opcoes = ['ignorarMaiusculas' => true, 'removerDuplicados' => false, 'porLinha' => true]; $resultado = ''; $estatisticas = []; if ($_SERVER['REQUEST_METHOD'] === 'POST') { $texto = $_POST['texto'] ?? ''; $ordenacao = $_POST['ordenacao'] ?? 'asc'; $opcoes = [ 'ignorarMaiusculas' => isset($_POST['ignorar_maiusculas']), 'removerDuplicados' => isset($_POST['remover_duplicados']), 'porLinha' => isset($_POST['por_linha']) ]; // Divide o texto if ($opcoes['porLinha']) { $itens = preg_split('/\r?\n/', trim($texto)); } else { $itens = preg_split('/[\s,;]+/', trim($texto)); $itens = array_filter($itens); } // Remove vazios $itens = array_filter($itens, fn($i) => trim($i) !== ''); $totalOriginal = count($itens); // Ordena if ($opcoes['ignorarMaiusculas']) { if ($ordenacao === 'asc') { natcasesort($itens); } else { arsort($itens); $itens = array_reverse($itens); } } else { if ($ordenacao === 'asc') { natsort($itens); } else { arsort($itens); } } // Remove duplicados if ($opcoes['removerDuplicados']) { $itens = array_unique($itens, SORT_FLAG_CASE); } $resultado = implode($opcoes['porLinha'] ? "\n" : ', ', $itens); $estatisticas = [ 'total_original' => $totalOriginal, 'total_final' => count($itens), 'duplicados_removidos' => $totalOriginal - count($itens) ]; } ?> - Minike Ferramentas

Recommended next step

Keep this result working for you

Minike connects the tool you are using with the product most likely to generate recurring value.

Prices shown for Brazil and US positioning. Current local checkout charges BRL until the international gateway is enabled.
Share this tool
✓ Link copiado!