How to Split a String with Escaped Delimiters?


The split(String regex) method of the String class splits this string around matches of the given regular expression.

Example

Live Demo

public class Sample{
   public static void main(String args[]){
      String s = "|A|BB||CCC|||";
      String[] words = s.split("\|");
      for (String string : words) {
         System.out.println(string);
      }
   }
}

Output

A
BB
CCC

Updated on: 26-Feb-2020

242 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements