T
tobleron
Hi, I have a data like this :
String sample = "blaa blee bliii bloo bluu";
These words were separated by tab (not space). I want to classify them
into :
String word1 = "blaa";
String word2 = "blee";
String word3 = "blii";
String word4 = "bloo";
String word5 = "bluu";
How to do that ? Please help. Thank you in advance.
Note : I know how to use scanner. I also know that new line is "\n".
But I don't know about tab. Is it "\t" ??
String sample = "blaa blee bliii bloo bluu";
These words were separated by tab (not space). I want to classify them
into :
String word1 = "blaa";
String word2 = "blee";
String word3 = "blii";
String word4 = "bloo";
String word5 = "bluu";
How to do that ? Please help. Thank you in advance.
Note : I know how to use scanner. I also know that new line is "\n".
But I don't know about tab. Is it "\t" ??