I'm looking for a reg expression which has the exact same meaning as the "*" operator in a linux / windows command line. For example, find all files that: starts with 0 or more random chars, contains "abc" in the middle, and ends with 0 or more random chars.
So something like this in Java:
if (test.match("*abc*"))
System.out.println("found match");