解决方案
以下示例在 str split(string) 方法的帮助下将字符串拆分为多个子字符串,然后打印子字符串。
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[j]);
}
}
}
}