Is there any way to write a RegEx which can be used to find files with different Extensions.
|
|
|||
|
|
|
Assuming you have a list of files and you are looking for .pdf, .chm and .doc, you can check it with:
Regex above should work if you will check it against single filenames. |
||
|
|
|
|
I'm sure there is, but the question you should be asking is "What's the best way to find files which have specific extensions?". Regular expressions are not the best answer to every question. I would suggest just getting a list of all files and passing them into a function like Something like this should do it:
Done in pseudo-code since it should be simple enough to turn into any other language. If you must have a regex, it's going to look something like (based on the values in your question):
but it depends entirely on the RE engine that you want to use. For example, here's the output from an egrep command in my work directory:
|
||||
|
