Función para eliminar espacios en blanco




using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace numero15
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

//Variables
string textoentrada, textosalida;

private void textBox1_TextChanged(object sender, EventArgs e)
{
textoentrada = textBox1.Text;
}


//Proceso
private void button1_Click(object sender, EventArgs e)
{
textosalida = textosinespacios(textoentrada);
textBox2.Text = textosalida.ToString();
}




//Metodo para eliminar los espacios
private static string textosinespacios(string texto)
{
//Variables
string f = "", t;
int i, p;
//Proceso
p = 0;
texto = texto.Trim();
for (i = 0; i < texto.Length; i++)
{
if (texto.Substring(i, 1).Equals(" "))
{
t = texto.Substring(p, i - p);
p = i + 1;
f = f + t;
}
}
t = texto.Substring(p, i - p);
f = f + t;
//Salida
return f;
}
private void button2_Click(object sender, EventArgs e)
{
Application.Exit();
}

}
}

No hay comentarios:

Publicar un comentario

Nota: solo los miembros de este blog pueden publicar comentarios.