buenas tardes,
trato de eliminar los saltos de línea de un texto previamente introducido, he utilizado, sin resultado:
1.
var patron =/\n/g;
var texto = String(texto.replace(patron, " "));
2.
for (i=0;i<texto.length;i++)
{
if (!texto.charAt(i).indexOf(String.fromCharCode(13)) == -1 )
{
texto.charAt(i) = " ";
}
if (!texto.charAt(i).indexOf(String.fromCharCode(10)) == -1 )
{
texto.charAt(i) = " ";
}
}
pueden ayudarme, por favor.
un saludo,
josé carlos.