summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/hjp5/examples/Listing1103.java
blob: 9bed2a50809b4d67c20f3de7999e035add5816f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Listing1103.java */

public class Listing1103
{
  public static void main(String[] args)
  {
    String satz = "Dies ist nur ein Test";
    String[] result = satz.split("\\s");
    for (int x=0; x<result.length; x++) {
      System.out.println(result[x]);
    }
  }
}