La documentation officielle Java indique:
La chaîne "boo:and:foo"
, par exemple, donne les résultats suivants avec ces expressions Regex Result:
{ "boo", "and", "foo" }"
Et c'est ainsi que j'en ai besoin pour fonctionner. Cependant, si je lance ceci:
public static void main(String[] args){
String test = "A|B|C||D";
String[] result = test.split("|");
for(String s : result){
System.out.println(">"+s+"<");
}
}
il imprime:
><
>A<
>|<
>B<
>|<
>C<
>|<
>|<
>D<
Ce qui est loin de ce à quoi je m'attendrais:
>A<
>B<
>C<
><
>D<
Pourquoi cela arrive-t-il?