Regular Expressions (also known as regex's) are similar to Windows Wildcards. Both are used to perform pattern matching. However, regex's are far more powerful than wildcards.
If you are using wildcards in the PFrank name filter to match filenames, then you can match all filenames ending in '.doc' with the expression '*.doc' . If you want to match filenames that start with 'A' and end in a 2 letter extension then you would use 'A*.??' .
Wildcards aren't used in PFrank for filename replacement patterns.
If you are using regex's in the PFrank name filter to match filenames, then you can match all filenames ending in '.doc' with the expression '.+\.doc' . This reads as: search for any character 1 or more times, followed by a '.' , followed by 'doc' . If you want to match filenames that start with 'A' and end in a 2 letter extension then you would use 'A.*\...' . This reads as: search for 'A' followed by 0 or more occurrences of any letter, followed by a '.' , followed by any 2 other characters.
If you are using regex's in the PFrank custom renaming patterns to replace filenames, then you can do things like search for parts of filenames that end in '.MP3' or '.Mp3' and change those parts to '.mp3'. One way to do this is to search for '\.[Mm][Pp]3' and replace it with '.mp3'
More information on how to to use regular expressions for pattern searching and replacing can be found in the built-in PFrank help manual or the links listed in the following sections.
Regular Expression Tutorial
Python Regular Expressions
Wikipedia Regular Expressions -
Contains a large list of references at the end of the page.
More tutorials can be found using the 'Google' search engine and searching for the phrase "regular expression" and the word "tutorial".