Java String Extrait des mots
String test = "My first arg test";
String[] words = test.split(" ");
for (String word : words) System.out.println(word);
NewExOne
String test = "My first arg test";
String[] words = test.split(" ");
for (String word : words) System.out.println(word);