c#字符串的截取

 public void tt ()
        {
            string tt="fdfsad哈哈f64f654das6f4";
            int n = 5; //要按位数来截取
            int L=tt.Length;  //取串长度
            int Y = L % n;//取余数;
            string[] aa;
            if (Y != 0)
            {
                 aa = new string[L / n + 1];
            }
            else
            {
                 aa = new string[L / n];
 
            }
           
            for(int i=1;i<=L/n;i++)
            {
                int index=i*n;
                if (i == L / n)
                {
                    if (Y != 0)
                    {
                        aa[i - 1] = tt.Substring(index, Y);
                    }
                }
                else
                {
                    aa[i - 1] = tt.Substring(index, n);
                }
                Response.Write(aa[i-1]+"<br />");
               
            }
       

 

posted @ 2020-03-01 17:15  曾小慧  阅读(347)  评论(0编辑  收藏  举报