Je suis nouveau en Java bien qu'ayant une bonne expérience en PHP, et je cherche à remplacer parfaitement les fonctions explode et implode (disponibles en PHP) en Java.
J'ai cherché sur Google mais je ne suis pas satisfait des résultats. Si quelqu'un a une bonne solution à mon problème, je l'en remercie.
Par exemple :
String s = "x,y,z";
//Here I need a function to divide the string into an array based on a character.
array a = javaExplode(',', s); //What is javaExplode?
System.out.println(Arrays.toString(a));
Sortie souhaitée :
[x, y, z]