Regular Expressions
I have a directory that contains files such as:
12345.log.1
45789.log.10
95214.log.120
etc....
I have tried to come up with a regular expression that will find files of this type but have come up empty handed. Anyone have any idea how to construct such an expression. Basically I need a filter such as *.log*
I'm using it in a FileNameFilter to return name.matches(*.log*)

