La documentazione ufficiale di Java afferma:
La stringa "boo:and:foo"
, ad esempio, produce i seguenti risultati con queste espressioni Risultato Regex:
{ "boo", "and", "foo" }"
Ed è così che mi serve per funzionare. Tuttavia, se eseguo questo:
public static void main(String[] args){
String test = "A|B|C||D";
String[] result = test.split("|");
for(String s : result){
System.out.println(">"+s+"<");
}
}
stampa:
><
>A<
>|<
>B<
>|<
>C<
>|<
>|<
>D<
Che è lontano da quello che mi aspetterei:
>A<
>B<
>C<
><
>D<
Perché sta succedendo?