public class Shiyan {
public static void main(String args[]) {
String s1 = "abc de.f gAB CDE FGH";
String str1[] = s1.split(" |\\.");
for (int i = 0; i < str1.length; i++) {
System.out.println(str1[i]);
}
}
}
public static void main(String args[]) {
String s1 = "abc de.f gAB CDE FGH";
String str1[] = s1.split(" |\\.");
for (int i = 0; i < str1.length; i++) {
System.out.println(str1[i]);
}
}
}