
04/10/2006, 05:49
|
| | Fecha de Ingreso: octubre-2004
Mensajes: 230
Antigüedad: 20 años, 6 meses Puntos: 0 | |
Si es verdad...perdonar..bueno pues tan facil como a la página que muestra la información y que tiene la funcion de marras
Código:
Function AcomodarTexto(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(texto,">",">")
texto=replace(texto,"º","°")
texto=replace(texto,"ª","ª")
texto=replace(texto,vbCrLf,"<br>")
texto=replace(texto,"<br>",vbCrLf)
texto=replace(texto,Chr(34),""")
texto=replace(texto,"'","''")
texto=replace(texto,"“",""")
texto=replace(texto,"”",""")
texto=replace(texto,"«",""")
texto=replace(texto,"»",""")
texto=replace(texto,"»",""")
AcomodarTexto=texto
End function
le quitamos la que está en negrita...y ya esta |