public class Test {
public static void main(String[] args) {
String string="a b c d e f g";
String Count[] = string.split(" "); //遇到空格就拆分。
for(int i=0;i<Count.length;i++)
{
System.out.println(Count[i]); //输出数组Count的数
}
}
}
时间: 2024-11-12 06:03:25