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 />"); }