Split text using java

Fermé
fadyakkar123 Messages postés 1 Date d'inscription lundi 30 décembre 2013 Statut Membre Dernière intervention 30 décembre 2013 - 30 déc. 2013 à 00:43
irmeche Messages postés 71 Date d'inscription jeudi 10 juin 2010 Statut Membre Dernière intervention 18 juillet 2014 - 30 déc. 2013 à 16:22
I want to split this two columns on java and put the frensh words in an arraylist and the english words in an another arraylist , thanks for help








bonjour;goodmorning
bonsoir;goodevening
chat;cat
comment;how
pourquoi;why
A voir également:

1 réponse

irmeche Messages postés 71 Date d'inscription jeudi 10 juin 2010 Statut Membre Dernière intervention 18 juillet 2014 17
Modifié par irmeche le 30/12/2013 à 16:24
use

List list = new ArrayList<String>();
String[] result = "bonjour;goodmorning ".split(";");

for (String string : result) {
list.add(string);
}
0