Usando Notepad++ para remover acentos

O que ando aprendendo nesta caminhada sobre a Terra

Usando Notepad++ para remover acentos

Today I share a tip to facilitate the replacement of accented characters using only Notepad++ and your HTML Tag Plugin.

Let’;s do it!

First of all, we must have HTML Tag Plugin installed. If you already have it, jump to step 4.

  1. Open Notepad++ and look for Plugins in Main Menu.
    Notepad Plugins Menu Item
  1. If HTML Tag is absent, open Plugin Manager->Show Plugin Manager and find HTML Tag Plugin on the list.
    HTML Tag Plugin on Notepad++ Plugin Manager
  2. Select the desired Plugins and hit Install button. Notepadd++ will restart to complete the install.
    Now we can translate special characters to yours HTML entities. We need to do it first to remove accents from our text.
  3. Put your text on the window and make Select All with Ctrl + A or Edit ->; Select All in Main Menu.
  4. Open Plugins->HTML Tag->Encode Entities in Main Menu or CTRL + E.
    Now, all special characters will be in html entities.
    Notepad++ With Special Characters Encoded in HTML
  5. Open the Replace Form (CTRL + H or Search->;Replace) and fill the Find What field with
    &([a-zA-Z])(grave|acute|circ|uml|aring|cedil|slash|tilde); and Replace with field with

    $1

    Select Regular Expression in Search Mode and hit Replace All button.
    Notepad++ Replace Form
    The text will be replaced with no accents characters, but all other special chars will be in HTML entity.
    Notepad++ HTML replaced text

  6. Now we can return all other chars to your originals but is better to use your text in UTF-8 encoding. Go to Encoding Menu and change text encoding if is not Utf-8. You can return to another encoding after this step.
    To decode HTML use CTRL + Shift + E or Plugins->HTML Tag->Decode Entities.
    Notepad++ Final Text convertion

I Hope that help someone.

 ;

11 comentários

  1. Hans Mösl disse:

    Com certeza me ajudou, isso posso dizer. Muito obrigado pelo post Marcos.

  2. Jeremiah disse:

    This was a lifesaver! Saved me hours of work, thank you!

  3. Rodrigo disse:

    Muito bom! Bem criativo e ajudou bastante.

  4. jorge disse:

    Si, claro que sí ayudó. muchísimas gracias

  5. Gilmar Aleixo disse:

    Marcos, muito grato pelo seu post, acaba de me economizar muito tempo de trabalho.

  6. dleaute disse:

    Je vais beaucoup améliorer le SEO de ma galerie a moi de faire les macros qui vont bien j’;avance a petit pas …;

    Un grand merci !!!

  7. Bruno Sousa disse:

    Valeu me ajudou muitooo obrigado

  8. Dan Lopez disse:

    You may need to adjust encoding before using this process so that the accents(diacritics) display correctly first. Use the Encoding menu to select another or convert to another. Like Marcos says it is best to use UTF-8. So convert to it.

  9. Marco Pavanello disse:

    Parabéns pela “;sacada”; e pela explicação: excelente.

    Segue uma possível contribuição, com objetivo de deixar mais simples a expressão regular de busca (find):

    &;([a-zA-Z])(grave|acute|circ|uml|aring|cedil|slash|tilde);

    A expressão é igual a original, exceto por não conter os caracteres ?: (interrogação e dois pontos), os quais são responsáveis por remover um grupo da captura (non-capturing group).

Deixe um comentário para dleaute Cancelar resposta

O seu endereço de e-mail não será publicado. Campos obrigatórios são marcados com *

Este site utiliza o Akismet para reduzir spam. Saiba como seus dados em comentários são processados.