String str = "00 01 02"; String[] strings = str.split(" ");
This works as expected. But if I want to add Tab to the list, it stops working, returning the whole string:
String[] strings = str.split(" \t");
So, as usual, I ask to translate from C# to Java...