Java Program to split a string using Regular Expression


Let’s say we have the following string.

String str = "{Java is a programming language} {James Gosling developed it.}";

Above, the string is enclosed with parentheses. We can split a string with these parentheses using the split() method.

String[] strSplit = str.split("[{}]");

The following is an example.

Example

 Live Demo

public class Demo {
   public static void main(String[] args) throws Exception {
      String str = "{Java is a programming language} {James Gosling developed it.}";
      String[] strSplit = str.split("[{}]");
      System.out.println("Splitting String...");
      for (int i = 0; i < strSplit.length; i++)
      System.out.println(strSplit[i]);
   }
}

Output

Splitting String...
Java is a programming language
James Gosling developed it.

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 27-Jun-2020

689 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements