function EncodingTexto(texto)
{
if (texto == " ")
texto = "";
else
{
texto = texto.replace("Á", "Á");
texto = texto.replace("É", "É");
texto = texto.replace("Í", "Í");
texto = texto.replace("Ó", "Ó");
texto = texto.replace("Ú", "Ú");
texto = texto.replace("Ñ", "Ñ");
texto = texto.replace("á", "á");
texto = texto.replace("é", "é");
texto = texto.replace("í", "í");
texto = texto.replace("ó", "ó");
texto = texto.replace("ú", "ú");
texto = texto.replace("ñ", "ñ");
texto = texto.replace("ª", "ª");
texto = texto.replace("°", "°");
texto = texto.replace("º", "º");
texto = texto.replace("'", "'");
texto = texto.replace("&", "&");
texto = texto.replace("Ä", "Ä");
texto = texto.replace("Ë", "Ë");
texto = texto.replace("Ï", "Ï");
texto = texto.replace("Ö", "Ö");
texto = texto.replace("Ü", "Ü");
texto = texto.replace("ä", "ä");
texto = texto.replace("ë", "ë");
texto = texto.replace("ï", "ï");
texto = texto.replace("ö", "ö");
texto = texto.replace("ü", "ü");
}
return texto;
}
Comentarios
Publicar un comentario