RegEx to find file names
top of page

RegEx to find file names

You can use this regular expression search to find file names with a three character extension:


^[\w,\s-]+\.[A-Za-z]{3}$




Change the number indicated in curly brackets at the end to account for longer extensions.


^[\w,\s-]+\.[A-Za-z]{4}$






bottom of page