| > I have been trying to use some advanced pattern
> matching for the files I want.
> I would assume that the pattern +*[0-9]H*[0-9].html
> would grab the correct files, but it does not seem
to
> work.
Try instead:
+*/*[0-9]H*[0-9].html
Because the matching starts at the begining of the
URL, and therefore 'foo' will nevery match
www.bar.com/foo.html. But '*/foo.html' will.
| |