You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
705 B
Java

public class JavaStringSplitEmp {
public static void main(String args[]) {
String str = "jan-feb-march";
String[] temp;
String delimeter = "-";
temp = str.split(delimeter);
for (int i =0; i < temp.length ; i++) {
System.out.println(temp[i]);
System.out.println("");
str = "jan.feb.march";
delimeter = "\\.";
temp = str.split(delimeter);
}
for (int i =0; i < temp.length ; i++) {
System.out.println(temp[i]);
System.out.println("");
temp = str.split(delimeter,2);
for (int j =0; j < temp.length ; j++) {
System.out.println(temp[i]);
}
}
}
}