9 ms·
It will not be clear: You can replace the first line with the following two String[] sents = {"the quick", "the slow", "the blue"}; Iterable<String> s = Sp
by odenze 14y ago
It will not be clear: You can replace the first line with the following two
String[] sents = {"the quick", "the slow", "the blue"};
Iterable<String> s = Splitter.on(" ").split(Joiner.on(" ").join(sents));
- jshen 14y agoGuava is nice, it makes java almost bearable.