split
public class DouHaoShuZuFenGe { public static void main(String[] args) { String orgStr = "a,b,c,d,e,f,g"; String[] result = orgStr.split(","); for (int i = 0; i < result.length; i++) { System.out.print(result[i] + "\t"); } for (String s : result) { System.out.print(s); } } }
原文:https://www.cnblogs.com/xnuuuu/p/12163388.html