| I have been trying to use some advanced pattern
matching for the files I want.
For example, suppose I want to grab the following
files:
2345H001.html
2345H002.html
2345H003.html
1234H001.html
1234H002.html
I would assume that the pattern +*[0-9]H*[0-9].html
would grab the correct files, but it does not seem to
work.
*[0-9] = I would assume this would mean match one or
more digits
*[A-Z,a-z] = Match one or more alpha characters
Some better samples in the documentation would help
too..
Thanks,
Bob. | |