splitAsStream() method of a
Pattern class used to return a stream of String from the given input sequence passed as parameter around matches of this pattern.this method is the same as the method split except that what we get back is not an array of String objects but a stream. If this pattern does not match any subsequence of the input then the resulting stream has just one element, namely the input sequence in string form.
Syntax:
public Stream<String> splitAsStream(CharSequence input)
Parameters: This method accepts a single parameter
CharSequence which represents character sequence to be split.
Return value: This method returns a stream of strings computed by splitting the input around matches of this pattern.
Below programs illustrate the splitAsStream() method:
Program 1:
Program 2: