VOOZH about

URL: https://www.geeksforgeeks.org/java/pattern-splitasstream-method-in-java-with-examples/

⇱ Pattern splitAsStream() Method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Pattern splitAsStream() Method in Java with Examples

Last Updated : 6 Mar, 2019
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:
Output:
Welcome to 
 for
Program 2:
Comment