Skip to content

Instantly share code, notes, and snippets.

@marcelitocs
Created March 29, 2017 17:56
Show Gist options
  • Save marcelitocs/f5d970105653c7ebd89fe0352fd860a5 to your computer and use it in GitHub Desktop.
Save marcelitocs/f5d970105653c7ebd89fe0352fd860a5 to your computer and use it in GitHub Desktop.
Remover acentos de uma string [javascript]
function removerAcentos( newStringComAcento ) {
var string = newStringComAcento;
var mapaAcentosHex = {
a : /[\xE0-\xE6]/g,
A : /[\xC0-\xC6]/g,
e : /[\xE8-\xEB]/g,
E : /[\xC8-\xCB]/g,
i : /[\xEC-\xEF]/g,
I : /[\xCC-\xCF]/g,
o : /[\xF2-\xF6]/g,
O : /[\xD2-\xD6]/g,
u : /[\xF9-\xFC]/g,
U : /[\xD9-\xDC]/g,
c : /\xE7/g,
C : /\xC7/g,
n : /\xF1/g,
N : /\xD1/g
};
for ( var letra in mapaAcentosHex ) {
var expressaoRegular = mapaAcentosHex[letra];
string = string.replace( expressaoRegular, letra );
}
return string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment