1 class Test {
2 public static void main( String[] args) {
3 String[] result = "Stack Me 123 Heppa1 oeu".split("\\a");
4
5 // output should be
6 // S
7 // t
8 // a
9 // c
10 // k
11 // M
12 // e
13 // H
14 // e
15 // ...
16 for ( int x=0; x<result.length; x++) {
17 System.out.println(result[x] + "\n");
18 }
19 }
20 }
21