Parcourir un String Java
1234
String[] result = "this is a test".split("\\s");
for (int x=0; x<result.length; x++)
System.out.println(result[x]);
Breakable Barracuda