自己写了从前向后的每隔3个加个,的程序,不知道有没有更好的处理方式
public class HelloWorld29 {
public static void main(String[] args) {
// TODO Auto-generated method stub
StringBuilder str=new StringBuilder();
str.append("jaewkjldfxmopzxas");
int x=(str.length()/3)+str.length();
for(int i=3;i<x;i+=4)
str.insert(i,",");
System.out.print(str.toString());
}
}