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:
import java.util.regex.*;
public class GFG {
public static void main(String[] args)
{
String REGEX = "ee" ;
String actualString
= "geeksforgeeks" ;
Pattern pattern = Pattern.compile(REGEX);
String[] array = pattern.split(actualString);
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:
import java.util.regex.*;
public class GFG {
public static void main(String[] args)
{
String REGEX = "ke" ;
String actualString
= "Bharat ke Veer Portal" ;
Pattern pattern = Pattern.compile(REGEX);
String[] array = pattern.split(actualString);
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)