生成指定位数的编号 C#

 1   if (TextBox1.Text.Length > 8)
 2         {
 3             TextBox1.Text = TextBox1.Text.Substring(08);
 4         }
 5         else
 6         {
 7             int j = 8 - TextBox1.Text.Length;
 8             for (int i = 0; i < j; i++)
 9             {
10                 TextBox1.Text = "0" + TextBox1.Text;
11             }
12         }
posted @ 2013-05-18 15:14  yellowshorts  阅读(306)  评论(0编辑  收藏  举报