Mega Code Archive

 
Categories / Java / Data Type
 

Special characters needs to be escaped while providing them as delimeters like and

public class Main {   public static void main(String args[]) {     String str = "one.two.three";     String[] temp = str.split("\\.");     for (String s: temp){       System.out.println(s);     }         } }