ok = inst.match("(OS<*zz*)") ;
System.out.println("Matching: (O*>zz*): " + ok);
System.out.println("");
System.out.println("Matching: (OS *> Linux, Android, IOS, Windows): " + ok);
ok = inst.match("(OS <* Linux, Android, IOS, Windows)") ;
System.out.println("Matching: (OS <* Linux, Android, IOS, Windows): " + ok);
ok = inst.match("(OS *> Linux, Android)") ;
System.out.println("Matching: (OS *> Linux, Android): " + ok);
ok = inst.match("(OS *> Android)") ;
System.out.println("Matching: (OS *> Android): " + ok);