Pattern split(CharSequence) method in Java with Examples Last Updated : 21 Feb, 2019 Comments Improve Suggest changes Like Article Like Report split(CharSequence) method of a Pattern class used to splits the given char sequence passed as parameter to method around matches of this pattern.This method can split charSequence into an array of String's, using the regular expression used to compile the pattern as a delimiter.so we can say that the method returns the array of strings computed by splitting the input around matches of this pattern. Syntax: public String[] split(CharSequence input) Parameters: This method accepts a single parameter input which represents character sequence to be split. Return value: This method returns the array of strings computed by splitting the input around matches of this pattern. Below programs illustrate the split(CharSequence) method: Program 1: Java // Java program to demonstrate // Pattern.split(CharSequence) method import java.util.regex.*; public class GFG { public static void main(String[] args) { // create a REGEX String String REGEX = "ee"; // create the string // in which you want to search String actualString = "geeksforgeeks"; // create a Pattern using REGEX Pattern pattern = Pattern.compile(REGEX); // split the text String[] array = pattern.split(actualString); // print array for (int i = 0; i < array.length; i++) { System.out.println("array[" + i + "]=" + array[i]); } } } Output: array[0]=g array[1]=ksforg array[2]=ks Program 2: Java // Java program to demonstrate // Pattern.split(CharSequence) method import java.util.regex.*; public class GFG { public static void main(String[] args) { // create a REGEX String String REGEX = "ke"; // create the string // in which you want to search String actualString = "Bharat ke Veer Portal"; // create a Pattern using REGEX Pattern pattern = Pattern.compile(REGEX); // split the text String[] array = pattern.split(actualString); // print array for (int i = 0; i < array.length; i++) { System.out.println("array[" + i + "]=" + array[i]); } } } Output: array[0]=Bharat array[1]= Veer Portal Reference: https://docs.oracle.com/javase/10/docs/api/java/util/regex/Pattern.html#split(java.lang.CharSequence) Comment More infoAdvertise with us Next Article Pattern split(CharSequence) method in Java with Examples A AmanSingh2210 Follow Improve Article Tags : Java Java - util package Java-Functions java-regular-expression Java-Pattern +1 More Practice Tags : Java Similar Reads Pattern split(CharSequence,int) method in Java with Examples split(CharSequence, int) method of a Pattern class used to splits the given char sequence passed as parameter to method around matches of this pattern.The array returned contains each substring of the input sequence created by this method. The substrings in the array are in the order in which they o 3 min read Pattern matcher(CharSequence) method in Java with Examples The matcher(CharSequence) method of the Pattern class used to generate a matcher that will helpful to match the given input as parameter to method against this pattern. The Pattern.matcher() method is very helpful when we need to check a pattern against a text a single time, and the default settings 2 min read Pattern matches(String ,CharSequence) method in Java with Examples The matches(String, CharSequence) method of the Pattern class in Java is used to answer whether or not the regular expression matches on the input. To do so we compile the given regular expression and attempts to match the given input against it where both regular expression and input passed as a pa 2 min read Matcher reset(CharSequence) method in Java with Examples The reset(CharSequence input) method of Matcher Class is used to reset this matcher and insert the input String passed as the parameter to this matcher. Syntax: public Matcher reset(CharSequence input) Parameters: This method takes the parameter input which is the String to be inserted into matcher 2 min read PrintStream append(CharSequence) method in Java with Examples The append(CharSequence) method of PrintStream Class in Java is used to write the specified CharSequence on the stream. This CharSequence value is taken as a parameter. Syntax: public PrintStream append(CharSequence charSequence) Parameters: This method accepts a mandatory parameter charSequence whi 2 min read Like