Nel programma dovrei far inserire uno spazio ogni tre "lettere".
Uso questo codice che però non sortisce alcun effetto, sapreste dirmi come mai?
Codice PHP:
h = (tmpstr.Length - 3);
if (checkBox1.Checked)
{
while (h >= 3)
{
tmpstr.Insert(h, " ");
h = h - 3;
}
}