I'm looking for a way to map a tab separated String to an array. Currently, I'm doing it with a lambda expression:
stream.map(line -> line.split("\t"));
Is there a way to do it with a method reference? I know that stream.map(String::split("\t"))
does not work, but am wondering if there is an alternative.
You can do something like this:
and then you'll be able to do: