class no1
{
public class TestStringOper2
{
/**
* @param args
*/
}
public static void main(String[] args)
{
// TODO 自动生成方法存根
String str="0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f,g,h,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,";
String[] str2=str.split(",");
int sum=0;
for(int i=0;i<str2.length;i++)
{
sum++;
if(sum%10==0)
System.out.println("");
System.out.print(str2[i]+" ");
}
}
}
结果是
0 1 2 3 4 5 6 7 8
9 a b c d e f g h j
k l m n o p q r s t
u v w x y z
帮忙看下 str里面的逗号去哪里了?str.spilt(“,”)删除了?
这个方法啥作用?
|