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

public class Listing1703
{
  public static void main(String[] args)
  {
    // Testet die Zeichenkette auf das Pattern
    boolean b = "aaaaab".matches("a*b");
  }
}