How do I do that every 29 digits, the line breaks?
var hs = hs_codes.Text;
var texto = new StringBuilder(hs.Length);
var digito = true;
foreach(var chr in hs)
{
if (char.IsDigit(chr))
{
if (!digito) texto.Append(';');
texto.Append(chr);
digito = true;
}
else digito = false;
}
txt_alterado.ReadOnly = false;
txt_alterado.Focus();
txt_alterado.Text = Convert.ToString(texto);