I was thinking of converting this String: 1 2 3 4 5 6 to an int[] using only lambda expressions. I was thinking of something along the lines of
int[] x = Arrays.asList(scan.nextLine().split(" ")).stream.forEach(it -> Integer.parseInt(it)); but this is syntactically invalid.
Just a couple of small improvement on @Jason's answer to remove the conversion to list and return an int[] rather than Integer[]:
int[] result = Pattern.compile(" ").splitAsStream("1 2 3 4 5")
.mapToInt(Integer::parseInt)
.toArray();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With